Skip to content

Commit

Permalink
remove accidential newlines
Browse files Browse the repository at this point in the history
  • Loading branch information
rbuffat committed Nov 24, 2021
1 parent 3c81412 commit 3360844
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions janus/__init__.py
Expand Up @@ -83,7 +83,6 @@ def put_nowait(self, item: T) -> None:
def get_nowait(self) -> T:
...


def put(self, item: T, block: bool = True, timeout: OptFloat = None) -> None:
...

Expand All @@ -94,18 +93,14 @@ def join(self) -> None:
...



class AsyncQueue(BaseQueue[T], Protocol[T]):


async def put(self, item: T) -> None:
...


async def get(self) -> T:
...


async def join(self) -> None:
...

Expand All @@ -115,7 +110,6 @@ async def join(self) -> None:
current_loop = asyncio.get_event_loop



class Queue(Generic[T]):
def __init__(self, maxsize: int = 0) -> None:
self._loop = current_loop()
Expand Down

0 comments on commit 3360844

Please sign in to comment.