Fixing problem with a trailing comma generated wrongly by the openapi generator

This commit is contained in:
Fernando Rincon
2019-10-01 21:34:55 +08:00
parent 032dc2996b
commit f179218e85

View File

@@ -435,7 +435,7 @@ instance MimeRender MimeMultipartFormData DateTime where
mimeRender _ = mimeRenderDefaultMultipartFormData
-- | @TI.parseTimeM True TI.defaultTimeLocale "%FT%T%6QZ"@
_readDateTime :: (TI.ParseTime t, Monad m, ) => String -> m t
_readDateTime :: (TI.ParseTime t, Monad m) => String -> m t
_readDateTime =
TI.parseTimeM True TI.defaultTimeLocale "%FT%T%6QZ"
{-# INLINE _readDateTime #-}