Skip to content

Commit

Permalink
chore: type hints
Browse files Browse the repository at this point in the history
  • Loading branch information
msto committed Oct 25, 2023
1 parent aebe9f3 commit abd90a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fgpyo/sam/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,10 +188,10 @@
_IOClasses = (io.TextIOBase, io.BufferedIOBase, io.RawIOBase, io.IOBase)
"""The classes that should be treated as file-like classes"""

_STDIN_PATHS = ["-", "stdin", "/dev/stdin"]
_STDIN_PATHS: List[str] = ["-", "stdin", "/dev/stdin"]
"""Paths that should be opened as stdin."""

_STDOUT_PATHS = ["-", "stdout", "/dev/stdout"]
_STDOUT_PATHS: List[str] = ["-", "stdout", "/dev/stdout"]
"""Paths that should be opened as stdout."""


Expand Down

0 comments on commit abd90a0

Please sign in to comment.