Skip to content
This repository was archived by the owner on Dec 8, 2022. It is now read-only.

Commit e683d8f

Browse files
committed
fix missing ) in string
1 parent d397f14 commit e683d8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CodeChallenge/cli/questions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ def q_sync():
157157
q.asset_ext = "." + content_type.split("/")[1]
158158
else:
159159
errors.append(f"unknown content type for asset on rank {rank}. 'asset_ext' column will need to be set "
160-
f"manually in table. (Content-Type: {r2.headers['content-type']!r}")
160+
f"manually in table. (Content-Type: {r2.headers['content-type']!r})")
161161

162162
for message in errors:
163163
click.secho(message, fg="red")

0 commit comments

Comments
 (0)