Skip to content

Commit

Permalink
Temporary exclude E722 and W605 from flake8 checks
Browse files Browse the repository at this point in the history
  • Loading branch information
ClaraBuettner committed Sep 19, 2023
1 parent f0a8141 commit 76a0c69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def flake8(session):
"""Check for happy little style accidents with `flake8`."""
setdefaults(session)
session.install("Flake8-pyproject", "flake8")
session.run("flake8", *cleaned)
session.run("flake8", "--ignore=E722, W605", *cleaned)


@nox.session(python=["3", "3.8", "3.9", "3.10", "3.11"])
Expand Down

0 comments on commit 76a0c69

Please sign in to comment.