Skip to content

Commit

Permalink
fix: pyright error
Browse files Browse the repository at this point in the history
  • Loading branch information
phi-friday committed Jul 27, 2024
1 parent 854b712 commit a3468ed
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/async_wrapper/queue.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportUnnecessaryTypeIgnoreComment=false
from __future__ import annotations

import math
Expand Down Expand Up @@ -28,7 +29,7 @@
)

if sys.version_info < (3, 11): # pragma: no cover
from exceptiongroup import ExceptionGroup # type: ignore
from exceptiongroup import ExceptionGroup # pyright: ignore[reportMissingImports]

if TYPE_CHECKING:
from types import TracebackType
Expand Down

0 comments on commit a3468ed

Please sign in to comment.