9 lines
No EOL
179 B
Python
9 lines
No EOL
179 B
Python
#!/usr/bin/env python3
|
|
|
|
|
|
from commands.base import BaseCommand
|
|
|
|
|
|
class Test(BaseCommand):
|
|
def exec(self, login: str, submission: str):
|
|
print(f"{login} - {submission}") |