Skip to content

Commit

Permalink
🎨 Format Python code with psf/black
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewpeng02 authored and github-actions committed May 10, 2024
1 parent 888aca8 commit f51680c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion training/training/constants.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
DLP_EXECUTIONS_BUCKET_NAME = "dlp-executions"
DLP_EXECUTIONS_BUCKET_NAME = "dlp-executions"
3 changes: 2 additions & 1 deletion training/training/core/celery/worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ def saveDetailedTrainResultsDataToS3(
):
s3 = boto3.resource("s3")
s3.Object(
DLP_EXECUTIONS_BUCKET_NAME, f"{detailedTrainResultsData.basic_info.trainspaceId}.json"
DLP_EXECUTIONS_BUCKET_NAME,
f"{detailedTrainResultsData.basic_info.trainspaceId}.json",
).put(Body=detailedTrainResultsData.json())


Expand Down

0 comments on commit f51680c

Please sign in to comment.