Skip to content

Commit

Permalink
Merge pull request #145 from marcelm/ignoremypy
Browse files Browse the repository at this point in the history
Ignore complex mypy issue
  • Loading branch information
marcelm authored Oct 15, 2024
2 parents 324afe1 + b75ddd2 commit 367690c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dnaio/multipleend.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ def __init__(
self._stack = contextlib.ExitStack()
self._writers: List[IO] = [
self._stack.enter_context(
opener(file, mode + "b") if not hasattr(file, "write") else file
opener(file, mode + "b") if not hasattr(file, "write") else file # type: ignore
)
for file in self._files
]
Expand Down

0 comments on commit 367690c

Please sign in to comment.