10 lines
124 B
Python
10 lines
124 B
Python
|
|
|
|
class ToxSave:
|
|
|
|
def __init__(self, tox):
|
|
self._tox = tox
|
|
|
|
def set_tox(self, tox):
|
|
self._tox = tox
|