Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions docassemble/AssemblyLine/al_courts.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,13 @@


class ALCourt(Court):
"""Object representing a court in Massachusetts.
TODO: it could be interesting to store a jurisdiction on a court. But this is non-trivial. Should it be geo boundaries?
"""Object representing a court in Massachusetts. We use a function on the CourtList object that filters courts by
address and can use any of those three features of the court to do the filtering.

<!-- TODO: it could be interesting to store a jurisdiction on a court. But this is non-trivial. Should it be geo boundaries?
A list of cities? A list of counties? Instead, we use a function on the CourtList object that filters courts by
address and can use any of those three features of the court to do the filtering."""
address and can use any of those three features of the court to do the filtering.-->
"""

def init(self, *pargs, **kwargs) -> None:
"""Create a new court object.
Expand Down
Loading