Skip to content

Commit 60ecb0b

Browse files
authored
Merge pull request #2024 from code-review-doctor/fix-probably-meant-fstring
Missing `f` prefix on f-strings fix
2 parents 5e3c40b + 0a44bca commit 60ecb0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dash/development/update_components.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def bootstrap_components(components_source, concurrency, install_type):
4545

4646
if status or not out:
4747
print(
48-
"🚨 Failed installing npm dependencies for component packages: {source_glob} (status={status}) 🚨",
48+
f"🚨 Failed installing npm dependencies for component packages: {source_glob} (status={status}) 🚨",
4949
file=sys.stderr,
5050
)
5151
sys.exit(1)

0 commit comments

Comments
 (0)