We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 352e869 commit b201e90Copy full SHA for b201e90
tests/Operations/ReadCsv.hs
@@ -55,8 +55,7 @@ prettyPrintSeparated sep filepath df = withFile filepath WriteMode $ \handle ->
55
(T.intercalate (T.singleton sep) (map (escapeField sep) headers))
56
-- Write data rows
57
mapM_
58
- ( \i ->
59
- TIO.hPutStrLn handle (T.intercalate (T.singleton sep) (getRowEscaped sep df i))
+ ( TIO.hPutStrLn handle . T.intercalate (T.singleton sep) . getRowEscaped sep df
60
)
61
[0 .. rows - 1]
62
0 commit comments