diff options
author | Pavlo Shchelokovskyy <pshchelokovskyy@mirantis.com> | 2014-04-04 16:44:30 +0300 |
---|---|---|
committer | Pavlo Shchelokovskyy <pshchelokovskyy@mirantis.com> | 2014-05-22 16:49:51 +0300 |
commit | 50ff4ec2fe6995d46c5f3afaefabd443cdf207d1 (patch) | |
tree | 73945e1939e63daeb301427caa40ef94f219d945 /heat/engine/constraints.py | |
parent | 61290febf71f23fe661ee91df5fa1e10060c9bed (diff) | |
download | heat-50ff4ec2fe6995d46c5f3afaefabd443cdf207d1.tar.gz |
Order imports in alphabetical order (9/9)
This patch fixes all the missed and newly introduced violations of the H306
style checking rule and enables it in tox.
Change-Id: I5566e66421d5397c0103958f02ea38e6e3c68892
Implements: blueprint reduce-flake8-ignored-rules (partial)
Diffstat (limited to 'heat/engine/constraints.py')
-rw-r--r-- | heat/engine/constraints.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/heat/engine/constraints.py b/heat/engine/constraints.py index c0e7af1e2..28db3683e 100644 --- a/heat/engine/constraints.py +++ b/heat/engine/constraints.py @@ -17,11 +17,10 @@ import re import six +from heat.common import exception from heat.engine import clients from heat.engine import resources -from heat.common import exception - class InvalidSchemaError(exception.Error): pass |