From 3b9379d85cd7d372465a92c636ac7e9ac4221c70 Mon Sep 17 00:00:00 2001 From: Jorge Bolois Date: Sat, 19 Aug 2023 20:01:36 +0200 Subject: [PATCH] cargo fmt --- src/current_weather_output.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/current_weather_output.rs b/src/current_weather_output.rs index ab6c865..f7282cd 100644 --- a/src/current_weather_output.rs +++ b/src/current_weather_output.rs @@ -95,7 +95,9 @@ impl CurrentWeatherOutput { speed_unit: SpeedUnit, ) -> CurrentWeatherOutput { CurrentWeatherOutput { - format, temperature_unit, speed_unit, + format, + temperature_unit, + speed_unit, data: CurrentWeatherOutputModel::new(), } }