Skip to content

Commit

Permalink
Reverted back the sig changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Roman Glushko committed Dec 28, 2023
1 parent f818b93 commit 825f1a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions notifykit/_notifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ def __aiter__(self) -> "Notifier":
def __iter__(self) -> "Notifier":
...

def __next__(self) -> Generator[List[Event], None, None]:
def __next__(self) -> List[Event]:
...

async def __anext__(self) -> AsyncGenerator[List[Event], None]:
async def __anext__(self) -> List[Event]:
...


Expand Down

0 comments on commit 825f1a7

Please sign in to comment.