Skip to content

Commit ebca962

Browse files
committed
fix for missing comma, fix misspelling
Signed-off-by: Ulincsys <[email protected]>
1 parent 97fee7e commit ebca962

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

jumpstart/Client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def loop(self, cbs):
3737
if cmd == Command.stop:
3838
cbs.stop(body["component"], self)
3939
except json.JSONDecodeError:
40-
self.respone(Status.error("Invalid JSON"))
40+
self.respond(Status.error("Invalid JSON"))
4141
except Exception as e:
4242
self.respond(Status.error(str(e)))
4343
console.exception("Exception while handling request: " + line)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"flask_graphql",
3939
"wheel",
4040
"sendgrid",
41-
"textual>=0.73.0"
41+
"textual>=0.73.0",
4242
"alembic==1.8.1", # 1.8.1
4343
"coloredlogs==15.0", # 15.0.1
4444
"Beaker==1.11.0", # 1.11.0

0 commit comments

Comments
 (0)