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 8a5d632 commit 8552f09Copy full SHA for 8552f09
ruff.toml
@@ -27,6 +27,7 @@ extend-select = [
27
"TID",
28
"FLY",
29
"I",
30
+ "PD",
31
"E",
32
"W",
33
"PGH",
@@ -37,6 +38,7 @@ ignore = [
37
38
"C408", # Unnecessary `dict()` call (rewrite as a literal)
39
"ISC002", # Implicitly concatenated string literals over multiple lines
40
"PIE790", # Unnecessary `pass` statement
41
+ "PD901", # Avoid using the generic variable name `df` for DataFrames
42
"E241", # Multiple spaces after comma
43
"E265", # Block comment should start with `# `
44
"E266", # Too many leading `#` before block comment
0 commit comments