about summary refs log tree commit diff stats
path: root/crates/rocie-client/src/models/step.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/rocie-client/src/models/step.rs')
-rw-r--r--crates/rocie-client/src/models/step.rs6
1 files changed, 1 insertions, 5 deletions
diff --git a/crates/rocie-client/src/models/step.rs b/crates/rocie-client/src/models/step.rs
index 9dc164f..3ad0367 100644
--- a/crates/rocie-client/src/models/step.rs
+++ b/crates/rocie-client/src/models/step.rs
@@ -35,10 +35,6 @@ pub struct Step {
 impl Step {
     /// A step holding step [`Item`]s
     pub fn new(items: Vec<models::Item>, number: u32) -> Step {
-        Step {
-            items,
-            number,
-        }
+        Step { items, number }
     }
 }
-