From e4e70b93d0756a7201c8a9f3f32721b225ae059b Mon Sep 17 00:00:00 2001 From: Martin Ashby Date: Thu, 17 May 2018 19:17:56 +0000 Subject: Fixed serialization problem with numpy array --- server.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server.py b/server.py index 47bc931..f9165b1 100644 --- a/server.py +++ b/server.py @@ -29,7 +29,7 @@ def send_state(): global all_clients state = { "saves": os.listdir(SAVES_DIR), - "pixels": unicorn.get_pixels() + "pixels": unicorn.get_pixels().tolist() } stateJson = json.dumps(state) for client in all_clients: @@ -106,4 +106,4 @@ def main(): if __name__=="__main__": main() - \ No newline at end of file + -- cgit v1.2.3-ZIG