Skip to content

Commit ecb804d

Browse files
committed
fix: Linting.
1 parent c1a2793 commit ecb804d

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

src/DataFrame/Typed/Expr.hs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,8 @@ lit = TExpr . Lit
134134

135135
-- | Conditional expression.
136136
ifThenElse ::
137-
(Columnable a) => TExpr cols Bool -> TExpr cols a -> TExpr cols a -> TExpr cols a
137+
(Columnable a) =>
138+
TExpr cols Bool -> TExpr cols a -> TExpr cols a -> TExpr cols a
138139
ifThenElse (TExpr c) (TExpr t) (TExpr e) = TExpr (If c t e)
139140

140141
-------------------------------------------------------------------------------

src/DataFrame/Typed/TH.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{-# LANGUAGE DataKinds #-}
22
{-# LANGUAGE OverloadedStrings #-}
33
{-# LANGUAGE ScopedTypeVariables #-}
4-
{-# LANGUAGE TemplateHaskell #-}
4+
{-# LANGUAGE TemplateHaskellQuotes #-}
55
{-# LANGUAGE TypeApplications #-}
66

77
module DataFrame.Typed.TH (

0 commit comments

Comments
 (0)