Skip to content

Commit

Permalink
Updated poetry deps, and fixed a few typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Hollingsworth committed Jul 8, 2022
1 parent 5febe83 commit 37075d4
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 978 deletions.
4 changes: 2 additions & 2 deletions backend/api/lib/s3.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def get_bucket() -> Bucket:
return session.resource("s3").Bucket(config.BUCKET) # type: ignore


def upload_github_event_json_to_s3(
def upload_to_s3(
event: str,
action: str,
headers: dict,
Expand All @@ -34,4 +34,4 @@ def upload_github_event_json_to_s3(
Key=key,
Body=json.dumps(json_data),
)
LOG.info(f"Uploaded {key} to S3")
LOG.info("Uploaded %s to S3", key)
2 changes: 1 addition & 1 deletion backend/api/routes/slack.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def help_command(context: BoltContext, payload: Dict[str, Any]):
context.ack(
f"""
*Slack Slash Command Was Executed!*
Hello <@{{{context.user_id}}}>!
Hello <@{context.user_id}>!
"""
)
print(json.dumps(payload, indent=4, separators=(",", " : ")))
Expand Down
Loading

0 comments on commit 37075d4

Please sign in to comment.