diff options
Diffstat (limited to 'autotypes/src/AutoTypes.hs')
-rw-r--r-- | autotypes/src/AutoTypes.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/autotypes/src/AutoTypes.hs b/autotypes/src/AutoTypes.hs index 826d6c6..ddc948c 100644 --- a/autotypes/src/AutoTypes.hs +++ b/autotypes/src/AutoTypes.hs @@ -12,7 +12,8 @@ import System.FilePath (takeFileName) autoTypes :: FilePath -> [FilePath] -> IO U.T autoTypes fp fps = autoTypes' <$> go fp <*> mapM go (fp : fps) - where go = fmap fromJust . decodeFileStrict' + where + go = fmap fromJust . decodeFileStrict' autoTypes' :: Value -> [Value] -> U.T autoTypes' t' ts' = |