Skip to content

Commit b0aae4d

Browse files
committed
fmt
1 parent e034cb0 commit b0aae4d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/db.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -273,8 +273,9 @@ impl LotAcquistion {
273273
}
274274
}
275275

276-
#[derive(Debug, PartialEq, Eq, Clone, Copy, Serialize, Deserialize, EnumString, IntoStaticStr)]
277-
#[derive(Default)]
276+
#[derive(
277+
Debug, PartialEq, Eq, Clone, Copy, Serialize, Deserialize, EnumString, IntoStaticStr, Default,
278+
)]
278279
pub enum LotSelectionMethod {
279280
#[strum(serialize = "fifo")]
280281
#[default]
@@ -301,7 +302,6 @@ impl LotSelectionMethod {
301302
pub const POSSIBLE_LOT_SELECTION_METHOD_VALUES: &[&str] =
302303
&["fifo", "lifo", "lowest-basis", "highest-basis"];
303304

304-
305305
#[derive(Debug, PartialEq, Clone, Serialize, Deserialize)]
306306
pub struct Lot {
307307
pub lot_number: usize,

0 commit comments

Comments
 (0)