Skip to content

Commit b237918

Browse files
committed
Linting error cant do this within an f string
1 parent 4408349 commit b237918

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

aces/idt/application.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -421,5 +421,6 @@ def validate_project_settings(self) -> None:
421421

422422
valid, errors = self.project_settings.validate()
423423
if not valid:
424-
msg = f"Invalid project settings\n: {'\n'.join(errors)}"
424+
error_string = "\n".join(errors)
425+
msg = f"Invalid project settings\n: {error_string}"
425426
raise ValueError(msg)

0 commit comments

Comments
 (0)