Skip to content

Commit b201e90

Browse files
committed
fix: Lint error in test.
1 parent 352e869 commit b201e90

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/Operations/ReadCsv.hs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,7 @@ prettyPrintSeparated sep filepath df = withFile filepath WriteMode $ \handle ->
5555
(T.intercalate (T.singleton sep) (map (escapeField sep) headers))
5656
-- Write data rows
5757
mapM_
58-
( \i ->
59-
TIO.hPutStrLn handle (T.intercalate (T.singleton sep) (getRowEscaped sep df i))
58+
( TIO.hPutStrLn handle . T.intercalate (T.singleton sep) . getRowEscaped sep df
6059
)
6160
[0 .. rows - 1]
6261

0 commit comments

Comments
 (0)