Hanno Böck commited on 2024-09-29 22:02:30
Zeige 1 geänderte Dateien mit 1 Einfügungen und 1 Löschungen.
| ... | ... |
@@ -15,7 +15,7 @@ class TestCodingstyle(unittest.TestCase): |
| 15 | 15 |
|
| 16 | 16 |
pylint_disable = ( |
| 17 | 17 |
"missing-docstring,invalid-name,duplicate-code," |
| 18 |
- + "too-many-arguments,consider-using-with" |
|
| 18 |
+ + "too-many-arguments,consider-using-with,too-many-positional-arguments" |
|
| 19 | 19 |
) |
| 20 | 20 |
subprocess.run(["pylint", f"--disable={pylint_disable}"] + pyfiles, check=True)
|
| 21 | 21 |
|
| 22 | 22 |