1
0
Fork 0
mirror of https://github.com/qurator-spk/dinglehopper.git synced 2025-06-07 19:05:13 +02:00

⚙ ruff: Ignore F811 (no redefinitions) for now, as ruff considers the multimethods redefinitions

This commit is contained in:
Mike Gerber 2023-08-03 19:53:29 +02:00
parent e4431797e6
commit bc6754d0cb

View file

@ -65,4 +65,6 @@ ignore_missing_imports = true
[tool.ruff] [tool.ruff]
select = ["E", "F", "I"] select = ["E", "F", "I"]
ignore = [] ignore = [
"F811", # multimethods are considered redefinitions by ruff
]