Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from abc import ABC, abstractmethod
- class Command(ABC):
- commandString = ""
- def __init__(self,dir):
- self.commandString = dir
- @abstractmethod
- def execute(self):
- pass
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement