Skip to content

Commit

Permalink
Chore: Changed command internals for formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
lordsarcastic committed Jan 24, 2024
1 parent 28eca01 commit 9445aea
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ jobs:
- name: Lint and format checks
run: |
pipenv run ruff check .
pipenv run ruff format --check .
- name: Set environment variables
run: |
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ flush-db:

format:
@docker compose run --rm app ruff format .
@docker compose run --rm app ruff check . --fix --select I001
@docker compose run --rm app ruff check . --fix --select I

install:
@pipenv install --dev
Expand Down
7 changes: 1 addition & 6 deletions config/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,12 +126,7 @@ class GeneralSettings(BaseSettings):
"UserAttributeSimilarityValidator"
),
},
{
"NAME": (
"django.contrib.auth.password_validation."
"MinimumLengthValidator"
)
},
{"NAME": "django.contrib.auth.password_validation.MinimumLengthValidator"},
{
"NAME": (
"django.contrib.auth.password_validation."
Expand Down

0 comments on commit 9445aea

Please sign in to comment.