Skip to content

Commit dc5f5c8

Browse files
committed
Purty
1 parent d39e793 commit dc5f5c8

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/AWS/EC2/EC2.purs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ module AWS.EC2
1212
) where
1313

1414
import Prelude
15-
1615
import AWS.Core.Client (makeClientHelper)
1716
import AWS.Core.Types (DefaultClientProps, Instance, InstanceId(..), InstanceType(..))
1817
import AWS.Core.Util (handleError)
@@ -216,4 +215,4 @@ describeInstanceTypeAttribute ec2 attribute instanceId =
216215
<#> parse
217216
where
218217
parse :: Json -> Either String (InstanceTypeAttribute ())
219-
parse = decodeJson <#> lmap handleError
218+
parse = decodeJson <#> lmap handleError

src/AWS/EC2/Types.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ with Attribute.InstanceType
6060
}
6161
-}
6262
type Raw a
63-
= ( "InstanceId" :: String | a)
63+
= ( "InstanceId" :: String | a )
6464

6565
type InstanceTypeAttribute a
6666
= { "InstanceType" :: { "Value" :: String }

0 commit comments

Comments
 (0)