minor refactor to app/Util.hs to make hlint happy
This commit is contained in:
parent
8be90e9822
commit
85920c26a0
|
@ -3,6 +3,7 @@
|
|||
## current
|
||||
|
||||
- minor UI tweak
|
||||
- minor refactoring
|
||||
|
||||
## 0.3.1.1
|
||||
|
||||
|
|
|
@ -105,9 +105,9 @@ confirm :: String -> Request Bool
|
|||
confirm x = prompt (x ++ " (y/n): ") $ reqAgree Nothing $ fmap return reqChar
|
||||
|
||||
loadFrom :: FilePath -> Request PWDatabase
|
||||
loadFrom path = reqDefault
|
||||
loadFrom path = fromMaybe newPWDatabase <$> reqDefault
|
||||
(reqIO (decodeFileStrict path))
|
||||
(Just newPWDatabase) >>= (return . fromMaybe newPWDatabase)
|
||||
(Just newPWDatabase)
|
||||
|
||||
save :: S.StateT Status IO ()
|
||||
save = do
|
||||
|
|
Loading…
Reference in New Issue
Block a user