Skip to content

Commit

Permalink
workflows:linting - ignore F401 in __init__.py files
Browse files Browse the repository at this point in the history
Used to export from submodules and should not throw an error
  • Loading branch information
MatteoCampinoti94 committed Sep 12, 2023
1 parent 22f6191 commit 3864382
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ jobs:
poetry install
- name: Run flake8, black, and mypy
run: |
poetry run flake8
poetry run flake8 --per-file-ignores='__init__.py:F401'
poetry run black --check .
poetry run mypy .

0 comments on commit 3864382

Please sign in to comment.