mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-19 10:27:07 +01:00
Renamed method
This commit is contained in:
parent
180fea090d
commit
932705d1a9
1 changed files with 2 additions and 2 deletions
|
@ -39,7 +39,7 @@ class UpdateRepository(Configs, Utilities):
|
||||||
self.endc: str = self.color['endc']
|
self.endc: str = self.color['endc']
|
||||||
self.flag_generate: list = ['-G', '--generate-only']
|
self.flag_generate: list = ['-G', '--generate-only']
|
||||||
|
|
||||||
def sbo(self) -> None:
|
def update_the_repository(self) -> None:
|
||||||
""" Updated the sbo repository. """
|
""" Updated the sbo repository. """
|
||||||
self.view.question()
|
self.view.question()
|
||||||
|
|
||||||
|
@ -119,7 +119,7 @@ class UpdateRepository(Configs, Utilities):
|
||||||
# Restore the terminal cursor
|
# Restore the terminal cursor
|
||||||
print('\x1b[?25h', self.endc, end='')
|
print('\x1b[?25h', self.endc, end='')
|
||||||
|
|
||||||
self.sbo()
|
self.update_the_repository()
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def delete_file(folder: str, txt_file: str) -> None:
|
def delete_file(folder: str, txt_file: str) -> None:
|
||||||
|
|
Loading…
Reference in a new issue