Skip to content

Commit 38a59c5

Browse files
committed
preview rule disable
1 parent 4c9e638 commit 38a59c5

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

src/async_utils/__init__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
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

1414
import os
1515
import sys
@@ -37,7 +37,8 @@
3737
elif sys.version_info.releaselevel in {"alpha", "beta", "candidate"}:
3838
import logging
3939

40-
msg += """\nThanks for testing this prior to release!.\n"""
40+
msg += """\nThanks for testing this (and a development version of python)
41+
prior to release!.\n"""
4142
logging.getLogger(__name__).warning(msg)
4243
else:
4344
msg += """\nYou can change this error to a warning if you are sure it is

0 commit comments

Comments
 (0)