Enable pylint consider-math-not-float check (#154338)

This commit is contained in:
Marc Mueller
2025-10-13 21:14:57 +02:00
committed by GitHub
parent 82c536a4e9
commit 1e5f5f4ad3
11 changed files with 31 additions and 22 deletions

View File

@@ -161,7 +161,6 @@ class-const-naming-style = "any"
# possibly-used-before-assignment - too many errors / not necessarily issues
# ---
# Pylint CodeStyle plugin
# consider-math-not-float
# consider-using-namedtuple-or-dataclass - too opinionated
# consider-using-assignment-expr - decision to use := better left to devs
disable = [
@@ -182,7 +181,6 @@ disable = [
"too-many-boolean-expressions",
"too-many-positional-arguments",
"wrong-import-order",
"consider-math-not-float",
"consider-using-namedtuple-or-dataclass",
"consider-using-assignment-expr",
"possibly-used-before-assignment",