SzybciorSmartTraktor/common.py
Emil Gutkiewicz 87be19409d restructured
2022-03-11 03:02:29 +01:00

9 lines
190 B
Python

class Instance:
def __init__(self):
self.vars = {}
def set(self, key: str, value):
self.vars[key] = value
def get(self, key: str):
return self.vars[key]