Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dragon-dxw committed Sep 27, 2024
1 parent 7c7eb84 commit 7a10916
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ds_caselaw_utils/courts.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ def __init__(self, court: Court, jurisdiction: Jurisdiction) -> None:
self.jurisdictions: list[Jurisdiction] = []

@property
def code(self) -> str:
return "/".join((self.court.code, self.jurisdiction.code))
def code(self) -> CourtCode:
return CourtCode("/".join((self.court.code, self.jurisdiction.code)))

@property
def name(self) -> str:
Expand Down

0 comments on commit 7a10916

Please sign in to comment.