Refactored executable arguments

This commit is contained in:
Sven Heidemann 2022-05-22 18:33:07 +02:00
parent dec4a45d98
commit 24ab6a51c1
15 changed files with 15 additions and 15 deletions

View File

@ -46,7 +46,7 @@ class AddService(CommandABC):
}, indent=2))
file.close()
def run(self, args: list[str]):
def execute(self, args: list[str]):
"""
Entry point of command
:param args:

View File

@ -22,7 +22,7 @@ class BuildService(CommandABC):
Usage: cpl build
""")
def run(self, args: list[str]):
def execute(self, args: list[str]):
"""
Entry point of command
:param args:

View File

@ -22,7 +22,7 @@ class CustomScriptService(CommandABC):
def help_message(self) -> str:
return ''
def run(self, args: list[str]):
def execute(self, args: list[str]):
cmd = self._config.get_configuration('ACTIVE_EXECUTABLE')
for script in self._workspace.scripts:

View File

@ -169,7 +169,7 @@ class GenerateService(CommandABC):
spinner_foreground_color=ForegroundColorEnum.cyan
)
def run(self, args: list[str]):
def execute(self, args: list[str]):
"""
Entry point of command
:param args:

View File

@ -24,7 +24,7 @@ class HelpService(CommandABC):
Usage: cpl help
""")
def run(self, args: list[str]):
def execute(self, args: list[str]):
"""
Entry point of command
:param args:

View File

@ -184,7 +184,7 @@ class InstallService(CommandABC):
Pip.reset_executable()
def run(self, args: list[str]):
def execute(self, args: list[str]):
"""
Entry point of command
:param args:

View File

@ -242,7 +242,7 @@ class NewService(CommandABC):
except Exception as e:
Console.error('Could not create project', str(e))
def run(self, args: list[str]):
def execute(self, args: list[str]):
"""
Entry point of command
:param args:

View File

@ -22,7 +22,7 @@ class PublishService(CommandABC):
Usage: cpl publish
""")
def run(self, args: list[str]):
def execute(self, args: list[str]):
"""
Entry point of command
:param args:

View File

@ -67,7 +67,7 @@ class RemoveService(CommandABC):
self._create_file(path, ws_dict)
def run(self, args: list[str]):
def execute(self, args: list[str]):
"""
Entry point of command
:param args:

View File

@ -22,7 +22,7 @@ class StartService(CommandABC):
Usage: cpl start
""")
def run(self, args: list[str]):
def execute(self, args: list[str]):
"""
Entry point of command
:param args:

View File

@ -49,7 +49,7 @@ class UninstallService(CommandABC):
def _wait(self, t: int, *args, source: str = None, stdout=None, stderr=None):
time.sleep(t)
def run(self, args: list[str]):
def execute(self, args: list[str]):
"""
Entry point of command
:param args:

View File

@ -156,7 +156,7 @@ class UpdateService(CommandABC):
project.write(json.dumps(config, indent=2))
project.close()
def run(self, args: list[str]):
def execute(self, args: list[str]):
"""
Entry point of command
:param args:

View File

@ -26,7 +26,7 @@ class VersionService(CommandABC):
Usage: cpl version
""")
def run(self, args: list[str]):
def execute(self, args: list[str]):
"""
Entry point of command
:param args:

View File

@ -11,6 +11,6 @@ class GenerateArgument(ArgumentExecutableABC):
self._config = config
self._env = env
def run(self, args: list[str]):
def execute(self, args: list[str]):
Console.error('Generate:')
Console.write_line(args, self._env.environment_name)

View File

@ -7,5 +7,5 @@ class InstallArgument(ArgumentExecutableABC):
def __init__(self):
ArgumentExecutableABC.__init__(self)
def run(self, args: list[str]):
def execute(self, args: list[str]):
Console.write_line('Install:', args)