Skip to content

Commit 2ed78d6

Browse files
committed
Minor changes
1 parent f3f4a60 commit 2ed78d6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Successfully installed gymie
4747
You can start the server from the command line:
4848

4949
```
50-
$ python gymie --host 0.0.0.0 --port 5000
50+
$ python -m gymie --host 0.0.0.0 --port 5000
5151
(84581) wsgi starting up on http://0.0.0.0:5000
5252
```
5353

gymie/api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,8 +172,8 @@ def close(ws, instance_id):
172172
lookup_env(instance_id).close()
173173
del envs[instance_id]
174174

175-
isClosed = instance_id not in envs
176-
ws.send(json.dumps(isClosed))
175+
is_closed = instance_id not in envs
176+
ws.send(json.dumps(is_closed))
177177

178178
def space_info(space):
179179
"""Returns information about the space in a dictionary

0 commit comments

Comments
 (0)