Improve type hint

This commit is contained in:
Richard Neumann 2021-10-21 22:56:46 +02:00
parent 63c6f39f98
commit 8eea325924
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ def cpuinfo() -> Iterator[dict[str, str]]:
cpu[key.strip()] = value.strip()
def meminfo(key: Optional[str] = None) -> Union[dict[str, int], int]:
def meminfo(key: Optional[str] = None) -> Union[dict[str, int], Optional[int]]:
"""Returns a dict with memory info if called with no args
or the value of the given key of said dict.
"""