Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nitinprakash96 committed Feb 6, 2025
1 parent b2c5bde commit 82a3218
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/Codec/Xlsx/Writer/Stream.hs
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,6 @@ import Text.Printf
import Text.XML (toXMLElement)
import qualified Text.XML as TXML
import Text.XML.Stream.Render
#if MIN_VERSION_xml_conduit(1,10,0)
import Text.XML.Stream.Render.Internal (RenderSettings(rsPretty))
#endif
import Text.XML.Unresolved (elementToEvents)


Expand Down Expand Up @@ -268,7 +265,7 @@ writeSst sharedStrings' = doc (n_ "sst") $
) $ sortBy (\(_, i) (_, y :: Int) -> compare i y) $ Map.toList sharedStrings'

writeEvents :: PrimMonad m => ConduitT Event Builder m ()
writeEvents = renderBuilder (def {rsPretty=False})
writeEvents = renderBuilder def

sheetViews :: forall m . MonadReader SheetWriteSettings m => forall i . ConduitT i Event m ()
sheetViews = do
Expand Down

0 comments on commit 82a3218

Please sign in to comment.