Skip to content

Commit

Permalink
Update kloppy/domain/models/common.py
Browse files Browse the repository at this point in the history
Co-authored-by: Pieter Robberechts <[email protected]>
  • Loading branch information
UnravelSports and probberechts authored Dec 16, 2024
1 parent 75e1efb commit 3e45ef9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kloppy/domain/models/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def full_name(self):
return f"{self.first_name} {self.last_name}"
if self.role:
return f"{self.role}_{self.referee_id}"
return self.referee_id
return f"referee_{self.referee_id}"


@dataclass(frozen=True)
Expand Down

0 comments on commit 3e45ef9

Please sign in to comment.