diff --git a/slpkg/update_repository.py b/slpkg/update_repository.py index aa8405da..f38577bc 100644 --- a/slpkg/update_repository.py +++ b/slpkg/update_repository.py @@ -39,7 +39,7 @@ class UpdateRepository(Configs, Utilities): self.endc: str = self.color['endc'] self.flag_generate: list = ['-G', '--generate-only'] - def sbo(self) -> None: + def update_the_repository(self) -> None: """ Updated the sbo repository. """ self.view.question() @@ -119,7 +119,7 @@ class UpdateRepository(Configs, Utilities): # Restore the terminal cursor print('\x1b[?25h', self.endc, end='') - self.sbo() + self.update_the_repository() @staticmethod def delete_file(folder: str, txt_file: str) -> None: