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 03856ab
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 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,15 +96,12 @@ 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 +111,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 03856ab

Please sign in to comment.