Modified a little bit of the documentation

This commit is contained in:
2025-07-08 09:39:51 -04:00
parent b46d221173
commit 31e8d9fcb2

View File

@ -36,6 +36,7 @@ class Expansion:
Attributes: Attributes:
players (tuple of str): players (tuple of str):
tags (tuple of flag): tags (tuple of flag):
config: The config of the expansion. Can't be modified during execution.
Methods: Methods:
step: step:
@ -57,6 +58,10 @@ class Expansion:
@property @property
def config(self): def config(self):
"""
The config of the expansion.
NOTE Can't be modified during execution.
"""
return copy.deepcopy(self._manager.config[self._ID]["config"]) return copy.deepcopy(self._manager.config[self._ID]["config"])
@property @property