Skip to content

Commit

Permalink
fix for missing comma, fix misspelling
Browse files Browse the repository at this point in the history
Signed-off-by: Ulincsys <ulincsys@gmail.com>
  • Loading branch information
Ulincsys committed Aug 27, 2024
1 parent d74b01a commit c2e128d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion jumpstart/Client.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def loop(self, cbs):
if cmd == Command.stop:
cbs.stop(body["component"], self)
except json.JSONDecodeError:
self.respone(Status.error("Invalid JSON"))
self.respond(Status.error("Invalid JSON"))
except Exception as e:
self.respond(Status.error(str(e)))
console.exception("Exception while handling request: " + line)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"flask_graphql",
"wheel",
"sendgrid",
"textual>=0.73.0"
"textual>=0.73.0",
"alembic==1.8.1", # 1.8.1
"coloredlogs==15.0", # 15.0.1
"Beaker==1.11.0", # 1.11.0
Expand Down

0 comments on commit c2e128d

Please sign in to comment.