We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Doesn't work correctly with following file. I don't get any error message for command flake8 --copyright-check dummy_file.py
flake8 --copyright-check dummy_file.py
import numpy as np a = np.zeros((1, 2, 3)) print(a)
flake8 --version:
flake8 --version
$ flake8 --version 3.5.0 (flake8-comprehensions: 1.4.1, flake8-docstrings: 1.3.0, pydocstyle: 2.1.1, flake8_commas: 2.0.0, flake8_copyright: 0.2.0, flake8_quotes: 1.0.0, mccabe: 0.6.1, pycodestyle: 2.3.1, pyflakes: 1.6.0) CPython 3.5.2 on Linux
The text was updated successfully, but these errors were encountered:
It seems you need to specify in config file select = C. The linked PR fix the issue by defaulty enabling the error code C801
select = C
Sorry, something went wrong.
No branches or pull requests
Doesn't work correctly with following file. I don't get any error message for command
flake8 --copyright-check dummy_file.py
flake8 --version
:The text was updated successfully, but these errors were encountered: