Updated for typing

This commit is contained in:
Dimitris Zlatanidis 2023-05-13 23:01:06 +03:00
parent c6c222bd4f
commit 8527583179

View file

@ -88,7 +88,7 @@ class SBoGenerate(Configs):
pattern: str = f'{name}: {name}'
if line.startswith(pattern):
return line[len(name) + 1:].strip()
return ''
return str()
@staticmethod
def read_info_file(info_file: Path, start: str, stop: str) -> list: