rename action_prop to action_fn

This commit is contained in:
2023-06-23 03:39:07 +01:00
parent b10a90418e
commit 435a9e2085
3 changed files with 7 additions and 9 deletions

View File

@@ -1,7 +1,7 @@
from .error import VMError
from .iremote import IRemote
from .kinds import kinds_all
from .meta import action_prop, bool_prop
from .meta import action_fn, bool_prop
class Recorder(IRemote):
@@ -24,7 +24,7 @@ class Recorder(IRemote):
(cls, CHANNELOUTMIXIN_cls),
{
**{
param: action_prop(param)
param: action_fn(param)
for param in [
"play",
"stop",