Skip to content

Commit

Permalink
Added centipoints_scored_finals to IndividualEvent. (#14)
Browse files Browse the repository at this point in the history
Addresses issue #13.
  • Loading branch information
ericvsmith committed Jan 9, 2024
1 parent 78b86ef commit eee3af6
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/sdif/models.py
Expand Up @@ -342,6 +342,12 @@ class IndividualEvent:
event_time_class: Optional[str] = spec(143, 2)
flight_status: Optional[str] = spec(145, 1)

# centipoints_scored_finals is used by Meet Manager to store the hundredths
# of points scored. If the points were 4.5 (due to a tie), then
# points_scored_finals (above) will contain " 4.", and
# centipoints_scored_finals will contain "50". This field is in the area
# of the record marked as "future use" in sdifv3f.txt.
centipoints_scored_finals: Optional[int] = spec(151, 2)

@model(frozen=True, kw_only=True)
class IndividualInfo:
Expand Down

0 comments on commit eee3af6

Please sign in to comment.