We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60120d2 commit 659c83bCopy full SHA for 659c83b
pyproject.toml
@@ -234,8 +234,8 @@ select = [
234
"TID",
235
# implicit string concatenation
236
"ISC",
237
- # type-checking imports
238
- "TCH",
+ # flake8-type-checking
+ "TC",
239
# comprehensions
240
"C4",
241
# pygrep-hooks
@@ -390,6 +390,8 @@ ignore = [
390
"PLW0108",
391
# global-statement
392
"PLW0603",
393
+ # runtime-cast-value
394
+ "TC006",
395
]
396
397
exclude = [
@@ -429,7 +431,7 @@ exclude = [
429
431
"pandas/tests/*" = ["B028", "FLY"]
430
432
"scripts/*" = ["B028"]
433
# Keep this one enabled
-"pandas/_typing.py" = ["TCH"]
434
+"pandas/_typing.py" = ["TC"]
435
436
[tool.ruff.lint.flake8-pytest-style]
437
fixture-parentheses = false
0 commit comments