Skip to content

Commit 14791bc

Browse files
committed
Manually adjust a specific directive placement
1 parent 89a7e17 commit 14791bc

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

async_utils/_cpython_stuff.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,10 @@ class _HashedSeq(list[Any]):
2626
__slots__ = ("hashvalue",)
2727

2828
def __init__(
29-
self, tup: tuple[Any, ...], hash: Callable[[object], int] = hash
30-
): # noqa: A002
29+
self,
30+
tup: tuple[Any, ...],
31+
hash: Callable[[object], int] = hash, # noqa: A002
32+
):
3133
self[:] = tup
3234
self.hashvalue: int = hash(tup)
3335

0 commit comments

Comments
 (0)