Skip to content

Commit f55fc63

Browse files
committed
Remove call to format
We don't need it because we're using f-strings instead.
1 parent b4f4f1e commit f55fc63

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

lettersmith/cli/scaffold.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,4 @@ def main():
4444
"and write all of the project files into it. "
4545
"That way we won't accidentally overwrite anything important!"
4646
)
47-
print(message.format(
48-
project_path=args.project_path
49-
))
47+
print(message)

0 commit comments

Comments
 (0)