Skip to content

Commit

Permalink
delint
Browse files Browse the repository at this point in the history
  • Loading branch information
metaist committed Dec 31, 2023
1 parent 0be8903 commit 9cdd83c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ezq/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

# lib
from multiprocess import Process # type: ignore
from multiprocess import Queue
from multiprocess import Queue # pyright: ignore

__all__ = (
"__version__",
Expand Down Expand Up @@ -75,7 +75,7 @@ class Msg:
# See: https://stackoverflow.com/a/48554601
# TODO [2024-10-14]: @ py3.8 EOL remove this conditional
if TYPE_CHECKING: # pragma: no cover
MsgQ = Union[Queue[Msg], ThreadSafeQueue] # pylint: disable=unsubscriptable-object
MsgQ = Union[Queue[Msg], ThreadSafeQueue[Msg]]
else:
MsgQ = Queue

Expand Down

0 comments on commit 9cdd83c

Please sign in to comment.