Tolerate description=None and make cli debuggable #34
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.
Normally the github-API returns for an empty description
"description"=""
. But in rare occasions it returns for an empty description"description"=None
. The valueNone
causes an error when writing the toml-file (TypeError: Object of type <class 'NoneType'> is not TOML serializable
). A description value ofNone
may results from adding labels via the github-API with other tools (in my case piceaTech/node-gitlab-2-github). - This PR adds auto-conversion ofNone
to""
to avoid the problem.This PR also adds
if __name__ == "__main__": ...
tocli.py
to enable running the script in the debugger viapython -m pdb src/labels/cli.py
.