Skip to content

Commit 5e7a172

Browse files
committed
fixes lint error related to f-string
1 parent 377b51c commit 5e7a172

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/microgenerator/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def write_code_to_file(output_path: str, content: str):
111111
print(f" Ensuring output directory exists: {os.path.abspath(output_dir)}")
112112
os.makedirs(output_dir, exist_ok=True)
113113
if not os.path.isdir(output_dir):
114-
print(f" Error: Output directory was not created.", file=sys.stderr)
114+
print(" Error: Output directory was not created.", file=sys.stderr)
115115
sys.exit(1)
116116

117117
print(f" Writing generated code to: {os.path.abspath(output_path)}")

0 commit comments

Comments
 (0)