Skip to content

Commit

Permalink
FIX: get_circuit_info fails with custom default telemetry freq (fixes #…
Browse files Browse the repository at this point in the history
  • Loading branch information
theOehrly committed Oct 4, 2023
1 parent 1cd9722 commit 984b16f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fastf1/mvapi/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def add_marker_distance(self, reference_lap: "fastf1.core.Lap"):
# get merged reference telemetry and limit to data source 'pos' so that
# only position values are used that are not interpolated
try:
tel = reference_lap.get_telemetry()
tel = reference_lap.get_telemetry(frequency='original')
except fastf1.core.DataNotLoadedError:
_logger.warning("Failed to generate marker distance information: "
"telemetry data has not been loaded")
Expand Down

0 comments on commit 984b16f

Please sign in to comment.