File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff 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 ]
231233name = " mikeshardmind-async-utils"
232234description = " Various async utilities"
You can’t perform that action at this time.
0 commit comments