Skip to content

Commit ad3175a

Browse files
committed
add note about banned api
1 parent 5d8b122 commit ad3175a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,6 @@ ignore = [
171171
"D107", # __init__ is the wrong place to doc this.
172172
"E501", # ruff format suggested
173173
"FBT003", # Wrong end to enforce this on.
174-
"G002", # erroneous issue with %-logging when logging can be confiured for % logging
175174
"ISC001", # ruff format suggested
176175
"PLC0105", # no, I don't like co naming style for typevars
177176
"PLC0415", # ruff gets this wrong, import needs to be not at top of file in some cases
@@ -227,6 +226,9 @@ allow-dict-calls-with-keyword-arguments = true
227226
"typing.final".msg = "see https://github.com/microsoft/pyright/issues/9664#issuecomment-2574042580"
228227
"typing_extensions.final".msg = "see https://github.com/microsoft/pyright/issues/9664#issuecomment-2574042580"
229228

229+
# Arguably, much of the collections.abc APIs should be banned as well, but the use in this library is
230+
# aware of the problems.
231+
230232
[project]
231233
name = "mikeshardmind-async-utils"
232234
description = "Various async utilities"

0 commit comments

Comments
 (0)