diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2020-01-19 01:40:23 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2020-01-19 01:40:23 +0100 |
| commit | 1726ff738f4f9b2836b92021b0b0ecfc61c9dde4 (patch) | |
| tree | 3f19af5f660ccafbfefcafce690342f1da0f6242 | |
| parent | a1ce42a7b33d466016d26b638f60e0beeafd9289 (diff) | |
parameter smoothing
| -rw-r--r-- | cli/app/search/live.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cli/app/search/live.py b/cli/app/search/live.py index c9418ba..096b4c1 100644 --- a/cli/app/search/live.py +++ b/cli/app/search/live.py @@ -426,8 +426,10 @@ class Listener: def on_get(self): state = interpolator.get_state() - sys.stderr.write(json.dumps(state) + "\n") - sys.stderr.flush() + # sys.stderr.write(json.dumps(state) + "\n") + # sys.stderr.flush() + for key in state.keys(): + print("set_opt: {} {}".format(key, state[key])) return state def on_cmd(self, cmd, payload): |
