Skip to content

Commit c69db46

Browse files
Fix invalid f-string
1 parent 03b5e0f commit c69db46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration/long_callback/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def setup_long_callback_app(manager_name, app_name):
106106
break
107107
lines.append(line)
108108
else:
109-
raise RuntimeError(f"celery failed to start: {'\n'.join(lines)}")
109+
raise RuntimeError("celery failed to start: " + {"\n".join(lines)})
110110

111111
try:
112112
yield import_app(f"tests.integration.long_callback.{app_name}")

0 commit comments

Comments
 (0)