diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2020-01-18 16:22:50 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2020-01-18 16:22:50 +0100 |
| commit | abc39afb44bec28f9c8f42c115b3f4578eb4c478 (patch) | |
| tree | c14252ef448f9750502a0ffc5a4ee25fb1fd8196 /cli | |
| parent | bc7aee94be5597cd69a3bdda2d7109675d02b809 (diff) | |
parameter smoothing
Diffstat (limited to 'cli')
| -rw-r--r-- | cli/app/search/live.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/app/search/live.py b/cli/app/search/live.py index cfde1a3..202203f 100644 --- a/cli/app/search/live.py +++ b/cli/app/search/live.py @@ -184,7 +184,7 @@ class InterpolatorParam: def assign(self, value, immediate=False): if self.datatype == 'float': - value float(value) + value = float(value) self.next_value = float(value) if immediate or not self.smooth: self.value = self.next_value |
