Skip to content

Commit 3c75e98

Browse files
committed
mypy: use plain ignore due to split mypy/mypyc behaviour
1 parent 0b4163c commit 3c75e98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cwltool/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -961,7 +961,7 @@ def main(
961961
if hasattr(sys.stdout, "detach"):
962962
stdout = io.TextIOWrapper(sys.stdout.buffer, encoding="utf-8")
963963
else:
964-
stdout = getwriter("utf-8")(sys.stdout) # type: ignore[assignment,arg-type]
964+
stdout = getwriter("utf-8")(sys.stdout) # type: ignore
965965
else:
966966
stdout = sys.stdout
967967
stdout = cast(IO[str], stdout)

0 commit comments

Comments
 (0)