Fix disappearing programs

This commit is contained in:
Andre Basche 2023-04-17 00:37:19 +02:00
parent 04f19c4609
commit 411effd814
2 changed files with 5 additions and 5 deletions

View file

@ -1,4 +1,4 @@
from typing import List, TYPE_CHECKING
from typing import List, TYPE_CHECKING, Dict
from pyhon.parameter.enum import HonParameterEnum
@ -13,7 +13,7 @@ class HonParameterProgram(HonParameterEnum):
super().__init__(key, {})
self._command = command
self._value: str = command.program
self._values: List[str] = list(command.programs)
self._programs: Dict[str, "HonCommand"] = command.programs
self._typology: str = "enum"
@property
@ -25,9 +25,9 @@ class HonParameterProgram(HonParameterEnum):
if value in self.values:
self._command.program = value
else:
raise ValueError(f"Allowed values {self._values}")
raise ValueError(f"Allowed values {self.values}")
@property
def values(self) -> List[str]:
values = [v for v in self._values if all(f not in v for f in self._FILTER)]
values = [v for v in self._programs if all(f not in v for f in self._FILTER)]
return sorted(values)

View file

@ -7,7 +7,7 @@ with open("README.md", "r") as f:
setup(
name="pyhOn",
version="0.8.0b6",
version="0.8.0b7",
author="Andre Basche",
description="Control hOn devices with python",
long_description=long_description,