Skip to content

Commit 62e13c3

Browse files
robtaylorclaude
andcommitted
Fix docstring indentation in SiliconStep.submit
The docstring had improperly indented options list that caused Sphinx RST parsing errors in CI (but not locally). Added blank line after the summary and proper indentation for the options block. Error: "Unexpected indentation" at line 3 of submit docstring 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent e3ae2c7 commit 62e13c3

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

chipflow_lib/platform/silicon_step.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,11 @@ def prepare(self):
108108

109109
def submit(self, rtlil_path, args):
110110
"""Submit the design to the ChipFlow cloud builder.
111+
111112
Options:
112-
--dry-run: Don't actually submit
113-
--wait: Wait until build has completed. Use '-v' to increase level of verbosity
114-
--log-file <file>: Log full debug output to file
113+
--dry-run: Don't actually submit
114+
--wait: Wait until build has completed. Use '-v' to increase level of verbosity
115+
--log-file <file>: Log full debug output to file
115116
"""
116117
if not args.dry_run:
117118
# Check for CHIPFLOW_API_KEY_SECRET or CHIPFLOW_API_KEY

0 commit comments

Comments
 (0)