Skip to content

Commit

Permalink
fixing last clippy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
maebli committed Feb 10, 2024
1 parent 8dbdb20 commit e0bd671
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/user_data/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ pub enum Medium {
WaterMode2,
HeatCostAllocator2,
ReservedMode2,
UnknownMedium,
Unknown,
ColdWater,
DualWater,
Pressure,
Expand Down Expand Up @@ -269,7 +269,7 @@ impl Medium {
0x19 => Medium::ADConverter,
// Extended reserved range from the second set
0x20..=0xFF => Medium::Reserved,
_ => Medium::UnknownMedium,
_ => Medium::Unknown,
}
}
}
Expand Down

0 comments on commit e0bd671

Please sign in to comment.