aboutsummaryrefslogtreecommitdiff
path: root/lib/Web/OpenWeatherMap/Types/CurrentWeather.hs
diff options
context:
space:
mode:
authorIgor Pashev <pashev.igor@gmail.com>2020-04-07 16:06:11 +0200
committerIgor Pashev <pashev.igor@gmail.com>2020-04-07 16:06:11 +0200
commit8d54b02d3c4bffbc2c5525e9fc64fac44b77ab96 (patch)
tree625ebba1e5bedc49fbccaef520f69562a86f768e /lib/Web/OpenWeatherMap/Types/CurrentWeather.hs
parentd808b4fd3b83cdffe8fc5bd142596b7820ee4a91 (diff)
downloadopenweathermap-8d54b02d3c4bffbc2c5525e9fc64fac44b77ab96.tar.gz
Reformat with hindent
Diffstat (limited to 'lib/Web/OpenWeatherMap/Types/CurrentWeather.hs')
-rw-r--r--lib/Web/OpenWeatherMap/Types/CurrentWeather.hs9
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/Web/OpenWeatherMap/Types/CurrentWeather.hs b/lib/Web/OpenWeatherMap/Types/CurrentWeather.hs
index 26572a7..e7d4464 100644
--- a/lib/Web/OpenWeatherMap/Types/CurrentWeather.hs
+++ b/lib/Web/OpenWeatherMap/Types/CurrentWeather.hs
@@ -1,12 +1,12 @@
{-# LANGUAGE DeriveAnyClass #-}
{-# LANGUAGE DeriveGeneric #-}
-module Web.OpenWeatherMap.Types.CurrentWeather (
- CurrentWeather(..)
-) where
+module Web.OpenWeatherMap.Types.CurrentWeather
+ ( CurrentWeather(..)
+ ) where
-import Prelude hiding (id)
import GHC.Generics (Generic)
+import Prelude hiding (id)
import Data.Aeson (FromJSON)
@@ -32,4 +32,3 @@ data CurrentWeather = CurrentWeather
, name :: String
, cod :: Int
} deriving (Show, Generic, FromJSON)
-