9 lines
147 B
Python
9 lines
147 B
Python
from command import AbstractCommand
|
|
|
|
class Login(AbstractCommand):
|
|
|
|
def check_arg(self):
|
|
return len(self.arg) < 2
|
|
|
|
def execute(self) -> str:
|
|
|