File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ ignore = [
4545 " ANN401" , # Any is the correct type in some cases
4646 " ASYNC116" , # Long sleeps are fine
4747 " B901" , # I'm aware of how generators as coroutines work
48+ " B903" , # nope, handwritten types are fine actually.
4849 " C90" , # mccabe complexity memes
4950 " COM812" , # ruff format suggested
5051 " D100" , # no, module level docs aren't always neededd
Original file line number Diff line number Diff line change 99__author__ = "Michael Hall"
1010__license__ = "Apache-2.0"
1111__copyright__ = "Copyright 2020-Present Michael Hall"
12- __version__ = "2025.02.15b "
12+ __version__ = "2025.02.18b "
1313
1414import os
1515import sys
3737 elif sys .version_info .releaselevel in {"alpha" , "beta" , "candidate" }:
3838 import logging
3939
40- msg += """\n Thanks for testing this prior to release!.\n """
40+ msg += """\n Thanks for testing this (and a development version of python)
41+ prior to release!.\n """
4142 logging .getLogger (__name__ ).warning (msg )
4243 else :
4344 msg += """\n You can change this error to a warning if you are sure it is
You can’t perform that action at this time.
0 commit comments