Skip to content

Commit 4d0788c

Browse files
committed
Mollify flake8 and isort
1 parent 59320bc commit 4d0788c

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

stack/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from troposphere import AWS_REGION, Equals, If, Not, Ref
22

3-
from . import USE_DOKKU, USE_EB, USE_ECS, USE_EC2, USE_GOVCLOUD
3+
from . import USE_DOKKU, USE_EB, USE_EC2, USE_ECS, USE_GOVCLOUD
44
from .template import template
55
from .utils import ParameterWithDefaults as Parameter
66

stack/containers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from awacs import ecr
55
from troposphere import Ref, iam
66

7-
from stack import USE_ECS, USE_EKS, USE_DOKKU, USE_EB
7+
from stack import USE_DOKKU, USE_EB, USE_ECS, USE_EKS
88
from stack.template import template
99
from stack.utils import ParameterWithDefaults as Parameter
1010

stack/tags.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ def tags_types_of_resource(resource):
1515
return tags_type
1616
return [tags_type]
1717

18+
1819
def tags_type_of_resource(resource):
1920
"""
2021
Return the type that this resource expects its Tags
@@ -23,6 +24,7 @@ def tags_type_of_resource(resource):
2324
"""
2425
return tags_types_of_resource(resource)[0]
2526

27+
2628
def add_empty_tags(resource):
2729
# Put an empty tags prop on this resource, of the right type.
2830
tags_type = tags_type_of_resource(resource)
@@ -59,4 +61,5 @@ def add_common_tags(template):
5961
else:
6062
raise TypeError("Unknown type %s for Tags on %s" % (type(resource.Tags), resource))
6163

64+
6265
add_common_tags(template)

0 commit comments

Comments
 (0)