Skip to content

Commit a011515

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
1 parent 7f824fe commit a011515

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

stdlib/_operator.pyi

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -282,11 +282,13 @@ if sys.version_info >= (3, 11):
282282

283283
if sys.version_info >= (3, 12):
284284
from collections.abc import Buffer
285+
285286
_B = TypeVar("_B", bound=Buffer)
286287
@overload
287288
def _compare_digest(a: str, b: str, /) -> bool: ...
288289
@overload
289290
def _compare_digest(a: _B, b: _B, /) -> bool: ...
291+
290292
else:
291293
from typing import AnyStr
292294
def _compare_digest(a: AnyStr, b: AnyStr, /) -> bool: ...

0 commit comments

Comments
 (0)