Skip to content

Commit

Permalink
no extra imports
Browse files Browse the repository at this point in the history
  • Loading branch information
pomponchik committed Aug 8, 2024
1 parent c6ddf46 commit 19cac44
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cantok/tokens/abstract/abstract_token.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from sys import getrefcount
from abc import ABC, abstractmethod
from threading import RLock
from typing import Tuple, List, Dict, Awaitable, Optional, Union, Any
from typing import List, Dict, Awaitable, Optional, Union, Any
from collections.abc import Iterable

from cantok.errors import CancellationError
Expand Down
2 changes: 1 addition & 1 deletion cantok/tokens/timeout_token.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from time import monotonic_ns, perf_counter
from typing import Union, Callable, Tuple, List, Dict, Any
from typing import Union, Callable, List, Dict, Any
from collections.abc import Iterable

from cantok import AbstractToken
Expand Down

0 comments on commit 19cac44

Please sign in to comment.