We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3f4a60 commit 2ed78d6Copy full SHA for 2ed78d6
README.md
@@ -47,7 +47,7 @@ Successfully installed gymie
47
You can start the server from the command line:
48
49
```
50
-$ python gymie --host 0.0.0.0 --port 5000
+$ python -m gymie --host 0.0.0.0 --port 5000
51
(84581) wsgi starting up on http://0.0.0.0:5000
52
53
gymie/api.py
@@ -172,8 +172,8 @@ def close(ws, instance_id):
172
lookup_env(instance_id).close()
173
del envs[instance_id]
174
175
- isClosed = instance_id not in envs
176
- ws.send(json.dumps(isClosed))
+ is_closed = instance_id not in envs
+ ws.send(json.dumps(is_closed))
177
178
def space_info(space):
179
"""Returns information about the space in a dictionary
0 commit comments