aboutsummaryrefslogtreecommitdiff
path: root/lib/GTFS.hs
diff options
context:
space:
mode:
Diffstat (limited to 'lib/GTFS.hs')
-rw-r--r--lib/GTFS.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/GTFS.hs b/lib/GTFS.hs
index bec519f..c4e2093 100644
--- a/lib/GTFS.hs
+++ b/lib/GTFS.hs
@@ -409,7 +409,7 @@ intAsBool r field = do
pure $ case int :: Maybe Int of
Just 1 -> Just True
Just 0 -> Just False
- _ -> Nothing
+ _ -> Nothing
intAsBool' :: CSV.NamedRecord -> BS.ByteString -> CSV.Parser Bool
intAsBool' r field = intAsBool r field >>= maybe