enum methods are not working
Hi, I'm trying to use the Enum as it's introduced in the latest release but instance methods are not working as usual.
pyscript version: 1.7.0 HA version: 2025.12.2, home assistant OS
A simple class for home mode and a method to update entity state in HA.
class HomeState(Enum):
HOME = "home"
AWAY = "away"
EXTENDED_AWAY = "extended_away"
SLEEPING = "sleeping"
JUST_ARRIVED = "just_arrived"
def set_state(self):
state.set("pyscript.home_state",self.value, new_attributes={"test":True})
state.persist("pyscript.home_state", default_value = HomeState.HOME.value,
default_attributes = {"icon":"mdi:home-account"})
@time_trigger
def test():
ha_state = HomeState.AWAY
ha_state.set_state()
above the test function fails with the following error log:
This error originated from a custom integration.
Logger: custom_components.pyscript.file.location.test
Source: custom_components/pyscript/trigger.py:1397
integration: Pyscript Python scripting (documentation, issues)
First occurred: 14:29:57 (1 occurrence)
Last logged: 14:29:57
Exception in <file.location.test> line 36: ha_state.set_state() ^ TypeError: 'set_state' is not callable (got HomeState.set_state) Traceback (most recent call last): File "/config/custom_components/pyscript/eval.py", line 946, in aeval val = await getattr(self, name, self.ast_not_implemented)(arg) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/config/custom_components/pyscript/eval.py", line 1967, in ast_call return await self.call_func(func, func_name, *args, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/config/custom_components/pyscript/eval.py", line 2019, in call_func raise TypeError(f"'{func_name}' is not callable (got {func})") TypeError: 'set_state' is not callable (got HomeState.set_state)
but this works:
def set_state_in_ha(home_state:HomeState):
state.set("pyscript.home_state",home_state.value)
Am I doing something wrong or enum is not fully functional in pyscript.
You're doing everything right. But it's not implemented yet :)
The implementation of classes in pyscript is weak. I think this is the cause of the error, not the implementation of enum support.
I'll see what I can do.
implementation of classes in pyscript is weak.
Definitely true! One significant challenge, among others (and not related to this issue), is that class methods in python are regular functions, but in pyscript they are async functions (by default). That creates a number of problems, including the inability to override built-in methods etc.
One workaround is to define classes that need more than basic functionality in native python, either with @pyscript_compile or an external module.