Skip to content
This repository has been archived by the owner on May 16, 2024. It is now read-only.

[FIX] travis_run_flake8.cfg: do not fully ignore __init__.py #595

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion travis/cfg/travis_run_flake8.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,6 @@
# E203: whitespace before ':' (black behaviour and not pep8 compliant)
ignore = E123,E133,E226,E241,E242,F811,F601,W503,W504,E203
max-line-length = 79
exclude = __unported__,__init__.py,examples
exclude = __unported__,examples
per-file-ignores =
**/__init__.py:F401