Skip to content

Commit

Permalink
- added flake8 import error ignore comment in test_visualization()
Browse files Browse the repository at this point in the history
  • Loading branch information
fernando-aristizabal committed Dec 14, 2023
1 parent 6b4f919 commit c39a4ed
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
max-line-length = 100
extend-ignore = E203, E501
ban-relative-imports = parents
per-file-ignores = __init__.py:F401,F403,E402
per-file-ignores =
__init__.py:F401,F403,E402
;exclude = *.py

[black]
Expand Down
3 changes: 2 additions & 1 deletion tests/test_visualization.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
from pytest_cases import parametrize_with_cases
from pytest import raises

import gval
# added comment because of flake8 believes it's unused
import gval # noqa: F401


@parametrize_with_cases(
Expand Down

0 comments on commit c39a4ed

Please sign in to comment.