Skip to content

Commit 270d56e

Browse files
authored
fix(framework): Fix a space issue in a CLI error message (#7013)
1 parent 84ce579 commit 270d56e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

framework/py/flwr/cli/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ def validate_project_name(name: str, target: str) -> None:
207207
raise ValueError(
208208
f'{target} "{name}" is invalid, '
209209
"a valid app name must start with a letter, "
210-
"and can only contain letters, digits, and hyphens. The name"
210+
"and can only contain letters, digits, and hyphens. The name "
211211
f"must also be no longer than {MAX_NAME_LENGTH} characters."
212212
)
213213

0 commit comments

Comments
 (0)