Skip to content

Commit

Permalink
unify string quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiask committed Mar 21, 2018
1 parent c23973b commit e7c13ff
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tests/manage.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
from os.path import abspath, dirname


if __name__ == "__main__":
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "testapp.settings")
if __name__ == '__main__':
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'testapp.settings')

sys.path.insert(0, dirname(dirname(abspath(__file__))))

Expand Down
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,12 @@ basepython = python3
deps =
flake8
isort
unify
changedir = {toxinidir}
commands =
flake8 .
isort --recursive --check-only --diff authlib tests
isort --check-only --recursive --diff authlib tests
unify --check-only --recursive --quote "'" authlib tests
skip_install = true

[testenv:docs]
Expand Down

0 comments on commit e7c13ff

Please sign in to comment.