Renamed method

This commit is contained in:
Dimitris Zlatanidis 2023-03-09 23:31:42 +02:00
parent 180fea090d
commit 932705d1a9

View file

@ -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: