summaryrefslogtreecommitdiff
path: root/oslo_policy
diff options
context:
space:
mode:
authorHervé Beraud <hberaud@redhat.com>2020-07-21 13:34:11 +0200
committerHervé Beraud <hberaud@redhat.com>2020-09-22 11:45:02 +0200
commit266ee36d3387247f8cbc57327a71f86a181fd45f (patch)
tree6476fd6c79b60ac27e8ab8a167124bff25634378 /oslo_policy
parentb184c7f27deb48bf6c7786be24defc785ce5ed73 (diff)
downloadoslo-policy-266ee36d3387247f8cbc57327a71f86a181fd45f.tar.gz
Adding pre-commit
Introduced changes: - pre-commit config and rules - Add pre-commit to pep8 gate, Flake8 is covered in the pre-commit hooks. - Applying fixes for pre-commit compliance in all code. Also commit hash will be used instead of version tags in pre-commit to prevend arbitrary code from running in developer's machines. pre-commit will be used to: - trailing whitespace; - Replaces or checks mixed line ending (mixed-line-ending); - Forbid files which have a UTF-8 byte-order marker (check-byte-order-marker); - Checks that non-binary executables have a proper shebang (check-executables-have-shebangs); - Check for files that contain merge conflict strings (check-merge-conflict); - Check for debugger imports and py37+ breakpoint() calls in python source (debug-statements); - Attempts to load all yaml files to verify syntax (check-yaml); - Run flake8 checks (flake8) (local) For further details about tests please refer to: https://github.com/pre-commit/pre-commit-hooks Change-Id: Ia9f7040f9966f1492c590a005f55ef7f3b67f0c9 Signed-off-by: Moisés Guimarães de Medeiros <moguimar@redhat.com>
Diffstat (limited to 'oslo_policy')
-rw-r--r--oslo_policy/generator.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/oslo_policy/generator.py b/oslo_policy/generator.py
index 244de03..d701d37 100644
--- a/oslo_policy/generator.py
+++ b/oslo_policy/generator.py
@@ -199,7 +199,6 @@ def _format_rule_default_yaml(default, include_help=True, comment_rule=True,
'# DEPRECATED\n# "%(name)s" has been deprecated since '
'%(since)s.\n%(reason)s\n%(text)s'
) % {'name': default.name,
- 'check_str': default.check_str,
'since': default.deprecated_since,
'reason': _format_help_text(default.deprecated_reason),
'text': text}