Updated for return

This commit is contained in:
Dimitris Zlatanidis 2023-05-23 17:20:59 +03:00
parent c572f741b5
commit a7887c924d

View file

@ -78,14 +78,13 @@ class Utilities(Configs):
build: str = ''.join(re.findall(r'\d+', build_tag[:2]))
pkg_tag: str = build_tag[len(build):]
split: dict[str] = {
return {
'name': name,
'version': version,
'arch': arch,
'build': build,
'tag': pkg_tag
}
return split
def finished_time(self, elapsed_time: float) -> None:
""" Printing the elapsed time. """