diff options
Diffstat (limited to 'python/astal')
-rw-r--r-- | python/astal/variable.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/astal/variable.py b/python/astal/variable.py index 3b6a71d..9b165cd 100644 --- a/python/astal/variable.py +++ b/python/astal/variable.py @@ -78,7 +78,7 @@ class Variable: else: f = lambda *_: self.get() - def setter(_, *args): + def setter(*args): self.set(f(*args)) if isinstance(objs, list): |