diff --git a/fgpyo/sam/__init__.py b/fgpyo/sam/__init__.py index 4d3a0979..5d6525fd 100644 --- a/fgpyo/sam/__init__.py +++ b/fgpyo/sam/__init__.py @@ -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."""