Skip to content

Commit

Permalink
fix(appellate parser): Unnumbered appellate entries are None, not ""
Browse files Browse the repository at this point in the history
  • Loading branch information
mlissner committed Dec 6, 2018
1 parent 1c4c42f commit 2de1c12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion juriscraper/pacer/appellate_docket.py
Expand Up @@ -538,7 +538,7 @@ def _get_document_number(cell):
for text_node in text_nodes:
if text_node.isdigit():
return text_node
return u''
return None

@staticmethod
def _get_pacer_doc_id(cell):
Expand Down

0 comments on commit 2de1c12

Please sign in to comment.