summaryrefslogtreecommitdiff
path: root/heat/engine/constraints.py
diff options
context:
space:
mode:
authorPavlo Shchelokovskyy <pshchelokovskyy@mirantis.com>2014-04-04 16:44:30 +0300
committerPavlo Shchelokovskyy <pshchelokovskyy@mirantis.com>2014-05-22 16:49:51 +0300
commit50ff4ec2fe6995d46c5f3afaefabd443cdf207d1 (patch)
tree73945e1939e63daeb301427caa40ef94f219d945 /heat/engine/constraints.py
parent61290febf71f23fe661ee91df5fa1e10060c9bed (diff)
downloadheat-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.py3
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