Skip to content

Commit c443661

Browse files
committed
chore: fix some whitespace issues by applying pre-commits ruff hooks on the whole codebase
1 parent 630a71d commit c443661

File tree

6 files changed

+1
-7
lines changed

6 files changed

+1
-7
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ testproject/.coverage
99
testproject/coverage.xml
1010
testproject/htmlcov/
1111
.tox
12-
.idea
12+
.idea

.readthedocs.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,3 @@ sphinx:
1414
python:
1515
install:
1616
- requirements: docs/requirements.txt
17-
18-

captcha/management/commands/captcha_create_pool.py

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66

77
class Command(BaseCommand):
8-
98
help = "Create a pool of random captchas."
109

1110
def add_arguments(self, parser):

captcha/migrations/0001_initial.py

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55

66
class Migration(migrations.Migration):
7-
87
dependencies = []
98

109
operations = [

captcha/migrations/0002_alter_captchastore_id.py

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55

66
class Migration(migrations.Migration):
7-
87
dependencies = [
98
("captcha", "0001_initial"),
109
]

docs/advanced.rst

-1
Original file line numberDiff line numberDiff line change
@@ -307,4 +307,3 @@ This sample generator that returns six random digits::
307307
for i in range(6):
308308
ret += str(random.randint(0,9))
309309
return ret, ret
310-

0 commit comments

Comments
 (0)