4 lines
102 B
Python
4 lines
102 B
Python
class BaseCommands:
|
|
def __init__(self, owner):
|
|
self._owner = owner
|
|
self._id = owner.get_id() |