Skip to content

Commit

Permalink
Merge pull request #14 from LemLib/feat/optional-analysis-skills-scores
Browse files Browse the repository at this point in the history
fix: make vrc-data-analysis score fields optional
  • Loading branch information
Aang099 authored Jan 29, 2024
2 parents 667648d + 113af3c commit 638eab6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/api/vrc_data_analysis/schema.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ pub struct TeamInfo {
pub dpr: f64,
pub mu: f64,
pub opr: f64,
pub score_auto_max: f64,
pub score_driver_max: f64,
pub score_total_max: f64,
pub score_auto_max: Option<f64>,
pub score_driver_max: Option<f64>,
pub score_total_max: Option<f64>,
pub sigma: f64,
pub team_name: String,
pub team_number: String,
Expand Down

0 comments on commit 638eab6

Please sign in to comment.