Skip to content

Commit

Permalink
Adds E225 flake8 error to ignore as it's misinterpreted on Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
kalaspuff committed Jan 29, 2024
1 parent 03bf1b2 commit 2f54595
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ warn_return_any = true
warn_unreachable = true

[tool.flake8]
ignore = ["E203", "E501", "W503", "E231", "E202", "E704"]
ignore = ["E203", "E501", "W503", "E231", "E202", "E704", "E225"]
exclude = ["tomodachi.egg-info", ".git", ".mypy_cache", ".pytest_cache", ".venv", ".vscode", "__pycache__", "build", "dist", "proto_build", "tmp"]

[tool.pytest.ini_options]
Expand Down

0 comments on commit 2f54595

Please sign in to comment.