| 1022 | def test_commandset_settables() -> None: |
| 1023 | # Define an arbitrary class with some attribute |
| 1024 | class Arbitrary: |
| 1025 | def __init__(self) -> None: |
| 1026 | self.some_value = 5 |
| 1027 | |
| 1028 | # Declare a CommandSet with a settable of some arbitrary property |
| 1029 | class WithSettablesA(CommandSetBase): |
no outgoing calls
searching dependent graphs…