Skip to content

Commit f4ff70a

Browse files
committed
Add A005 per-file ignore for mixpanel/flags/types.py
The module name shadows stdlib `types`, but renaming would break imports across the codebase.
1 parent ce0d6fe commit f4ff70a

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,9 @@ ignore = [
136136
"S311", # suspicious-non-cryptographic-random-usage
137137
"D", # docstrings
138138
]
139+
"mixpanel/flags/types.py" = [
140+
"A005", # shadows stdlib `types` module (renaming would break imports)
141+
]
139142
"docs/conf.py" = [
140143
"INP001", "A001", "ERA001", "D",
141144
]

0 commit comments

Comments
 (0)