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

@@ -22,8 +22,8 @@ def float_prop(param):
return property(fget, fset)
def action_prop(param, val: int = 1):
"""A param that performs an action"""
def action_fn(param, val: int = 1):
"""meta function that performs an action"""
def fdo(self):
self.setter(param, val)