Skip to content

Commit

Permalink
fix fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
pxp9 committed Jul 14, 2023
1 parent 4b5863e commit 5b79507
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/model/filter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ pub enum Currency {
}

impl From<Currency> for Host {
fn from(currency: Currency) -> Self {
fn from(currency: Currency) -> Self {
match currency {
Currency::USD => Host::Com,
Currency::GBP => Host::Uk,
Expand All @@ -270,8 +270,7 @@ impl From<Currency> for Host {
Currency::SEK => Host::Se,
Currency::RON => Host::Ro,
Currency::HUF => Host::Hu,
Currency::EUR => Host::random_euro_host()

Currency::EUR => Host::random_euro_host(),
}
}
}
Expand Down

0 comments on commit 5b79507

Please sign in to comment.