Skip to content

Commit c85f2c9

Browse files
committed
Ruff, ignore checks for imports that use the same names as builtins
1 parent a61cf79 commit c85f2c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.ruff.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,8 @@ lint.select = [
114114

115115
lint.ignore = [
116116
"COM812", # missing trailing comma, covered by black
117-
"ANN101", # ignore missing type annotation in self parameter
118117
"S311", # ignore Standard pseudo-random generators because they are not used for cryptographic purposes
118+
"A004", # ignore Checks for imports that use the same names as builtins.
119119
]
120120

121121
fix = true

0 commit comments

Comments
 (0)