Skip to content

Commit f32117d

Browse files
committed
whoops, dupe slot
1 parent ad3175a commit f32117d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/async_utils/__init__.py

Lines changed: 1 addition & 1 deletion
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.07.05b"
12+
__version__ = "2025.07.07b"
1313

1414
import os
1515
import sys

src/async_utils/_qs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ class BaseQueue[T]:
203203
May make sense as a type annotation.
204204
"""
205205

206-
__slots__ = ("__get_ws", "__put_ws", "__unlocked", "__unlocked", "__ws", "maxsize")
206+
__slots__ = ("__get_ws", "__put_ws", "__unlocked", "__ws", "maxsize")
207207

208208
def __init__(self, /, maxsize: int | None = None) -> None:
209209
self.__ws: deque[AsyncEvent | ThreadingEvent] = deque()

0 commit comments

Comments
 (0)