Theo Voss
Results
1
comments of
Theo Voss
``` issue_dict = tree.get_issue_dict() tree.get_issue_dict would return something along the lines of: { "no_text":[all_items_with_no_text], "no_links_to_parent":[all_items_without_links_to_parent_doc], "non_normative_has_links":[all_non_normative_items_with_links] } ``` And I would go: ``` for issue_type in issue_dict.keys: f=open("/issues/"+issue_type) for issue...