Skip to content

Commit

Permalink
Fix a type
Browse files Browse the repository at this point in the history
  • Loading branch information
TaiSakuma committed Feb 18, 2025
1 parent c865925 commit 1de3aa0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions nextline/plugin/spec.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,10 @@ async def on_initialize_run(context: Context) -> None:
''''''


@hookspec # type: ignore
@asynccontextmanager # type: ignore
async def run(context: Context) -> AsyncIterator[None]: # type: ignore
''''''
@hookspec
@asynccontextmanager
async def run(context: Context) -> AsyncIterator[None]:
yield # pragma: no cover


@hookspec
Expand Down

0 comments on commit 1de3aa0

Please sign in to comment.