Core: convert is_zip to zip_path

This commit is contained in:
Fabian Dill
2022-08-18 00:27:37 +02:00
committed by Fabian Dill
parent d0faa36eef
commit a1aa9c17ff
4 changed files with 13 additions and 9 deletions

View File

@@ -422,6 +422,10 @@ def get_text_between(text: str, start: str, end: str) -> str:
return text[text.index(start) + len(start): text.rindex(end)]
def get_text_after(text: str, start: str) -> str:
return text[text.index(start) + len(start):]
loglevel_mapping = {'error': logging.ERROR, 'info': logging.INFO, 'warning': logging.WARNING, 'debug': logging.DEBUG}