Skip to content

Commit

Permalink
Fix type hint for load_dotenv
Browse files Browse the repository at this point in the history
  • Loading branch information
eaftan committed Oct 20, 2022
1 parent cedd36d commit 6e2a287
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dotenv/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ def _is_interactive():


def load_dotenv(
dotenv_path: Union[str, os.PathLike, None] = None,
dotenv_path: Union[str, os.PathLike[str], os.PathLike[bytes], None] = None,
stream: Optional[IO[str]] = None,
verbose: bool = False,
override: bool = False,
Expand Down

0 comments on commit 6e2a287

Please sign in to comment.