Skip to content

Commit

Permalink
Run 'make fmt'.
Browse files Browse the repository at this point in the history
  • Loading branch information
ewbankkit committed Aug 23, 2019
1 parent 7d14fa3 commit f4a25db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aws/resource_aws_kinesis_firehose_delivery_stream.go
Original file line number Diff line number Diff line change
Expand Up @@ -2497,7 +2497,7 @@ func firehoseDeliveryStreamSSEWaitUntilTargetState(conn *firehose.Firehose, deli

func isKinesisFirehoseDeliveryStreamOptionDisabled(v interface{}) bool {
options := v.([]interface{})
if len(options) == 0 || options[0] == nil {
if len(options) == 0 || options[0] == nil {
return true
}
m := options[0].(map[string]interface{})
Expand All @@ -2507,7 +2507,7 @@ func isKinesisFirehoseDeliveryStreamOptionDisabled(v interface{}) bool {
if v, ok := m["enabled"]; ok {
enabled = v.(bool)
}

return !enabled
return !e.(bool)
}

0 comments on commit f4a25db

Please sign in to comment.