work on v0.3.0

This commit is contained in:
2025-02-17 20:57:15 +03:00
parent 37b62fd69b
commit a9e545f3d8
20 changed files with 47 additions and 77 deletions
+2 -1
View File
@@ -13,6 +13,8 @@ class Command:
self._description = description
self._flags = flags
self._input_flags = None
def get_string_entity(self):
return self._command
@@ -30,7 +32,6 @@ class Command:
self._command = command
def validate_commands_params(self):
print(self._flags)
if not isinstance(self._command, str):
raise InvalidCommandInstanceException(self._command)
if not isinstance(self._description, str):