Skip to content

Commit

Permalink
lint: Fixes the lint job
Browse files Browse the repository at this point in the history
flake8 released version 5.0.0. Because of this, pyproject-flake8
is failing because a class it was using from flake8 no longer exists,
resulting in the following error:

AttributeError: module 'flake8.options.config' has no attribute 'ConfigFileFinder'

This commit can be reversed once this issue is resolved:
csachs/pyproject-flake8#13
  • Loading branch information
claudiubelu committed Aug 3, 2022
1 parent 0b271dd commit 40c36bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ commands =
description = Check code against coding style standards
deps =
black
flake8
flake8 < 5.0.0
flake8-docstrings
flake8-copyright
flake8-builtins
Expand Down

0 comments on commit 40c36bf

Please sign in to comment.