Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove an unnecessary 'type: ignore' directive.
  • Loading branch information
qnighy committed Mar 16, 2019
commit d452173bafdecb0e2248b936e5e593ee347b139a
2 changes: 1 addition & 1 deletion src/dotenv/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def _get_stream(self):
yield self.dotenv_path
elif os.path.isfile(self.dotenv_path):
with io.open(self.dotenv_path) as stream:
yield stream # type: ignore
yield stream
else:
if self.verbose:
if not TYPE_CHECKING or sys.version_info >= (3, 0):
Expand Down