summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorPeter Razumovsky <prazumovsky@mirantis.com>2016-02-18 14:53:49 +0300
committerPeter Razumovsky <prazumovsky@mirantis.com>2016-02-26 15:47:46 +0300
commit2da713fa913c912766a467a55d25e315d570d239 (patch)
treedae7ebcd9fd9f6073f9a7e8aa5f79193555730a3 /tools
parent1d16909dfd4f90513b8e011eea02dc6800c64062 (diff)
downloadheat-2da713fa913c912766a467a55d25e315d570d239.tar.gz
Fix all attributes error for custom guidelines
There are several errors during attributes descriptions checking by custom guidelines. Need to fix them for successful pep8 running. implements bp custom-guidelines Change-Id: I3df75c6343217723fd4490f9e70eb2d8499eb5ae
Diffstat (limited to 'tools')
-rw-r--r--tools/custom_guidelines.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/custom_guidelines.py b/tools/custom_guidelines.py
index 4b7861a37..21dd50bbc 100644
--- a/tools/custom_guidelines.py
+++ b/tools/custom_guidelines.py
@@ -58,8 +58,8 @@ class HeatCustomGuidelines(object):
self._check_resource_schemas(cls, cls.properties_schema,
'property')
# check attributes' descriptions
- #self._check_resource_schemas(cls, cls.attributes_schema,
- # 'attribute')
+ self._check_resource_schemas(cls, cls.attributes_schema,
+ 'attribute')
# check methods descriptions
#self._check_resource_methods(cls)