Skip to content

Commit

Permalink
unused imports fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nekufa committed Sep 25, 2023
1 parent dadec61 commit b5587dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sharded_queue/__init__.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
from asyncio import all_tasks, current_task, ensure_future, gather, get_event_loop, sleep
from asyncio import all_tasks, current_task, gather, get_event_loop, sleep
from contextlib import asynccontextmanager
from dataclasses import dataclass
from datetime import datetime, timedelta
from functools import cache, partial
from importlib import import_module
from signal import SIGKILL, SIGTERM
from signal import SIGTERM
from typing import (Any, AsyncGenerator, Generic, NamedTuple, Optional, Self,
TypeVar, get_type_hints)

Expand Down

0 comments on commit b5587dd

Please sign in to comment.