Skip to content

Commit

Permalink
chore: fix some whitespace issues by applying pre-commits ruff hooks …
Browse files Browse the repository at this point in the history
…on the whole codebase
  • Loading branch information
mbi committed Nov 14, 2024
1 parent 630a71d commit c443661
Show file tree
Hide file tree
Showing 6 changed files with 1 addition and 7 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ testproject/.coverage
testproject/coverage.xml
testproject/htmlcov/
.tox
.idea
.idea
2 changes: 0 additions & 2 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,3 @@ sphinx:
python:
install:
- requirements: docs/requirements.txt


1 change: 0 additions & 1 deletion captcha/management/commands/captcha_create_pool.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@


class Command(BaseCommand):

help = "Create a pool of random captchas."

def add_arguments(self, parser):
Expand Down
1 change: 0 additions & 1 deletion captcha/migrations/0001_initial.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@


class Migration(migrations.Migration):

dependencies = []

operations = [
Expand Down
1 change: 0 additions & 1 deletion captcha/migrations/0002_alter_captchastore_id.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@


class Migration(migrations.Migration):

dependencies = [
("captcha", "0001_initial"),
]
Expand Down
1 change: 0 additions & 1 deletion docs/advanced.rst
Original file line number Diff line number Diff line change
Expand Up @@ -307,4 +307,3 @@ This sample generator that returns six random digits::
for i in range(6):
ret += str(random.randint(0,9))
return ret, ret

0 comments on commit c443661

Please sign in to comment.