Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ajberdy committed Oct 27, 2023
1 parent e6d2ba6 commit 36f17a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/braket/jobs/hybrid_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ def _sanitize(hyperparameter: Any) -> str:
# max allowed length for a hyperparameter is 2500
if len(sanitized) > 2500:
# show as much as possible, including the final 20 characters
return f"{sanitized[:2500-23]}...{sanitized[-20:]}"
return f"{sanitized[:2500 - 23]}...{sanitized[-20:]}"
return sanitized


Expand Down

0 comments on commit 36f17a3

Please sign in to comment.