Skip to content

Commit

Permalink
Update inactive case statuses for MCCI, MCCR, and PGV
Browse files Browse the repository at this point in the history
  • Loading branch information
dismantl committed Sep 25, 2021
1 parent d716fca commit a6e2c9b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/mjcs/parser/MCCI.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ class ContinueParsing(Exception):

class MCCIParser(CaseDetailsParser):
inactive_statuses = [
# TODO
'CLOSED',
'EXPUNGED'
]

def __init__(self, case_number, html):
Expand Down
2 changes: 1 addition & 1 deletion src/mjcs/parser/MCCR.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class ContinueParsing(Exception):

class MCCRParser(CaseDetailsParser, ChargeFinder):
inactive_statuses = [
# TODO
'CLOSED'
]

def header(self, soup):
Expand Down
4 changes: 3 additions & 1 deletion src/mjcs/parser/PGV.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@

class PGVParser(CaseDetailsParser):
inactive_statuses = [
# TODO
'Closed',
'Inactive',
'Case Closed Statistically'
]

def header(self, soup):
Expand Down

0 comments on commit a6e2c9b

Please sign in to comment.