Skip to content

Commit

Permalink
fix: Quote forward reference in type stubs
Browse files Browse the repository at this point in the history
  • Loading branch information
cjolowicz committed Feb 13, 2021
1 parent d3a1982 commit cf8ca18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nox_poetry/sessions.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import nox.virtualenv
Python = Optional[Union[str, Sequence[str], bool]]

class PoetrySession:
def __init__(self, session: Union[nox.Session, Session]) -> None: ...
def __init__(self, session: Union[nox.Session, "Session"]) -> None: ...
def install(self, *args: str, **kwargs: Any) -> None: ...
def installroot(
self, *, distribution_format: str = ..., extras: Iterable[str] = ...
Expand Down

0 comments on commit cf8ca18

Please sign in to comment.