updates for typing functions on top level modules

This commit is contained in:
Blake Harnden 2020-01-13 10:06:18 -08:00
parent ab3659183e
commit 4e71759ac9
5 changed files with 209 additions and 133 deletions

View file

@ -9,7 +9,7 @@ class CoreCommandError(subprocess.CalledProcessError):
Used when encountering internal CORE command errors.
"""
def __str__(self):
def __str__(self) -> str:
return (
f"Command({self.cmd}), Status({self.returncode}):\n"
f"stdout: {self.output}\nstderr: {self.stderr}"