diff options
author | Aylur <[email protected]> | 2024-06-16 02:09:03 +0200 |
---|---|---|
committer | Aylur <[email protected]> | 2024-06-16 02:09:03 +0200 |
commit | 49f0ffcd5df6f15e195ece8f3a9a33ef873638ae (patch) | |
tree | fc1c5ce23c5dac2c003ccb47c958a680c0273d6d /python/astal | |
parent | a4229d6db2896a9e600ec7110c0370d50f2fb73c (diff) |
fix(Variable): pass emitting object on observe
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): |