state fixes; deprecation

This commit is contained in:
Abubakar Abid 2022-03-03 15:25:14 -05:00
parent 651d67a0c6
commit 8e1577e6de
2 changed files with 9 additions and 8 deletions

View File

@ -844,6 +844,8 @@ class State(OutputComponent):
Parameters:
label (str): component name in interface (not used).
"""
warnings.warn("The State output component will be deprecated. Please use the "
"new Stateful component.")
super().__init__(label)
@classmethod

View File

@ -8,18 +8,17 @@ class StateHolder:
state_dict: Dict[str, Any] = {}
def __init__(self, id):
self.id = id
self.__id = id
def __setattr__(self, name, value):
if name == "state":
StateHolder.state_dict[self.id] = value
else:
if name.startswith("_"):
self.__dict__[name] = value
else:
StateHolder.state_dict[(self.__id, name)] = value
def __getattr__(self, name):
if name == "state":
return StateHolder.state_dict.get(self.id, None)
else:
if name.startswith("_"):
return self.__dict__[name]
else:
return StateHolder.state_dict.get((self.__id, name), None)