Skip to content
Snippets Groups Projects
Unverified Commit aa5aaa8b authored by Peter Stanko's avatar Peter Stanko
Browse files

Fixed missing return

parent d4e8ee9c
No related branches found
No related tags found
No related merge requests found
Pipeline #
...@@ -70,6 +70,7 @@ class Entity(object): ...@@ -70,6 +70,7 @@ class Entity(object):
if not abs_path.exists(): if not abs_path.exists():
log.error(f"Path {abs_path} not exists!") log.error(f"Path {abs_path} not exists!")
raise errors.NotFoundError(f"Path {abs_path} not exists!") raise errors.NotFoundError(f"Path {abs_path} not exists!")
return path
@property @property
def zip_path(self) -> Path: def zip_path(self) -> Path:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment