Skip to content

Commit

Permalink
remove newlines
Browse files Browse the repository at this point in the history
  • Loading branch information
rbuffat committed Nov 24, 2021
1 parent 3c81412 commit 610d860
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 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 @@ -97,7 +96,6 @@ def join(self) -> None:

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


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

Expand All @@ -115,7 +113,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 610d860

Please sign in to comment.