Remove unused repo tag

This commit is contained in:
Dimitris Zlatanidis 2023-04-06 12:23:26 +03:00
parent 656a2a90ef
commit bb828c14f1

View file

@ -112,9 +112,8 @@ class Utilities:
arch: str = ''.join(package[len(name + version) + 2:].split('-')[:-1]) arch: str = ''.join(package[len(name + version) + 2:].split('-')[:-1])
build_tag: str = package.split('-')[-1] build_tag: str = package.split('-')[-1]
build: str = ''.join(re.findall(r'\d+', build_tag[:2])) build: str = ''.join(re.findall(r'\d+', build_tag[:2]))
tag: str = build_tag[len(build):].replace('_', '')
return [name, version, arch, build, tag] return [name, version, arch, build]
def finished_time(self, elapsed_time: float) -> None: def finished_time(self, elapsed_time: float) -> None:
""" Printing the elapsed time. """ """ Printing the elapsed time. """