Skip to content

Commit 2a1d8cb

Browse files
authored
Fix formatting (#25)
1 parent 78736a4 commit 2a1d8cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fprime_bootstrap/bootstrap_project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def bootstrap_project(parsed_args: "argparse.Namespace"):
9090
def check_project_name(project_name: str) -> bool:
9191
"""Checks if a project name is valid. Project name should be a valid
9292
FPP identifier, it should only contain alphanumeric characters and underscores."""
93-
if not re.match(r'^[A-Za-z][A-Za-z0-9_]*$', project_name):
93+
if not re.match(r"^[A-Za-z][A-Za-z0-9_]*$", project_name):
9494
raise InvalidProjectName(
9595
f"Invalid project name: {project_name}. "
9696
"Project name must start with a letter and only contain alphanumeric characters and underscores."

0 commit comments

Comments
 (0)