-
Notifications
You must be signed in to change notification settings - Fork 0
Zensical #4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Zensical #4
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -38,3 +38,5 @@ htmlcov/ | |
| # Docs output | ||
| site/ | ||
|
|
||
| # custom docs building | ||
| build-docs.sh | ||
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -26,10 +26,4 @@ def __init__(self, message: str, errors: list[dict[str, Any]] | None = None): | |||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||
| class A3ParseError(Exception): | ||||||||||||||||||||||||||||||||||
| """Raised when JSON parsing or file I/O fails. | ||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||
| Parameters | ||||||||||||||||||||||||||||||||||
| ---------- | ||||||||||||||||||||||||||||||||||
| message : str | ||||||||||||||||||||||||||||||||||
| Human-readable description of the failure. | ||||||||||||||||||||||||||||||||||
| """ | ||||||||||||||||||||||||||||||||||
| """Raised when JSON parsing or file I/O fails.""" | ||||||||||||||||||||||||||||||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The removal of the
Suggested change
|
||||||||||||||||||||||||||||||||||
| """Raised when JSON parsing or file I/O fails.""" | |
| """Raised when JSON parsing or file I/O fails. | |
| Parameters | |
| ---------- | |
| message : str | |
| Human-readable description of the parsing or I/O failure. | |
| """ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ignoring
build-docs.shprevents the script from being committed to the repository. If this script is intended for use by other contributors or in CI/CD pipelines to build documentation, it should be tracked. If it is a local-only script, it is better to keep it out of the repository's.gitignoreand use a local exclude file instead.