Skip to content

Commit 18320b3

Browse files
robtaylorclaude
andcommitted
Fix syntax error in f-string in silicon.py
Fixed a syntax error in the f-string on line 189 where double quotes were used inside double quotes, which was causing coverage.py to be unable to parse the file. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent f465632 commit 18320b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chipflow_lib/steps/silicon.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ def submit(self, rtlil_path, *, dry_run=False):
186186
# Handle response based on status code
187187
if resp.status_code == 200:
188188
logger.info(f"Submitted design: {resp_data}")
189-
print(f"https://{host}/build/{resp_data["build_id"]}")
189+
print(f"https://{host}/build/{resp_data['build_id']}")
190190

191191
else:
192192
# Log detailed information about the failed request

0 commit comments

Comments
 (0)