Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
casperstorm committed Mar 29, 2024
1 parent 0d83b8f commit 7957636
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions data/src/version.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ pub struct Version {
pub remote: Option<String>,
}

impl Default for Version {
fn default() -> Self {
Self::new()
}
}

impl Version {
pub fn new() -> Version {
let current = VERSION.to_owned();
Expand Down

0 comments on commit 7957636

Please sign in to comment.