Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hello,
Following from a fix for issue #175 I updated most docstrings to remove the annoying Sphinx warnings (there were almost 700).
Most of the warnings were due to the bad types declared in the docstrings:
string
instead ofstr
,boolean
instead ofbool
, etc..Some warnings were about extra indentations or bad reference to methods/functions/attributes.
I did have to suppress some of the warnings because I could not find a solution. I used the following option in
conf.py
As you can read from the last comment, there is no documentation page for the Service class, so that is the reason for the warning. For the others I am stumped:
('py:class', 'Request')
you get 32 warnings simlar to this one/py-sasctl/src/sasctl/core.py:docstring of sasctl.core.Session.delete:3: WARNING: py:class reference target not found: Request
('py:class', 'Response')
you get 12 warnings simlar to this one/py-sasctl/src/sasctl/core.py:docstring of sasctl.core.Session.delete:1: WARNING: py:class reference target not found: Response
_io.BytesIO
warning is due to the following line of codepython-sasctl/src/sasctl/pzmm/zip_model.py
Line 50 in 5e8d8fd
JSONEncoder
warning is due to the following line of codepython-sasctl/src/sasctl/pzmm/write_json_files.py
Line 31 in 5e8d8fd
At the moment the only warnings remaining are the following:
I don't understand the last two given that the intersphinx links are correct.
Signed-off-by: Stefano Silvestri [email protected]