yunojuno / django-request-token

Django app that uses JWT to manage one-time and expiring tokens to protected URLs. Not related to DRF.
MIT License
47 stars 23 forks source link

Amend comments in flake8 config to fix linter errors #58

Closed coxm closed 1 year ago

coxm commented 1 year ago

Currently the linting checks fail on master (presumably because the linting library versions are unpinned, and those libraries have been updated).

Flake8 does not accept inline comments in its configuration (see https://flake8.pycqa.org/en/latest/user/configuration.html); this commit moves inline comments to their own lines in .flake8.

See also https://github.com/yunojuno/django-side-effects/pull/30.