We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 333204b + 1dd4172 commit fbb2b83Copy full SHA for fbb2b83
src/onto_crawler/api.py
@@ -93,7 +93,13 @@ def _extract_info_from_issue_object(issue: Issue) -> dict:
93
94
95
def _make_sense_of_body(body: str) -> list:
96
- return body.replace("\r", "").replace("\n", "").split("* ")[1:]
+ return (
97
+ body.replace("\r", "")
98
+ .replace("\n", "")
99
+ .replace("<", "")
100
+ .replace(">", "")
101
+ .split("* ")[1:]
102
+ )
103
104
105
def get_all_labels_from_repo(repository_name: str) -> dict:
src/onto_crawler/cli.py
@@ -49,6 +49,7 @@ def main(verbose: int, quiet: bool):
49
repo_option = click.option(
50
"-r",
51
"--repo",
52
+ required=True,
53
help="Org/name of the github repo.",
54
)
55
0 commit comments