diff options
author | Nathaniel Case <this.is@nathanielca.se> | 2020-06-24 03:07:29 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-24 07:07:29 +0000 |
commit | 5bf1112c8c015bff6f54d4b17a3571f665381e1e (patch) | |
tree | c7d7e56324d876e4367f1a66352b525ff0963474 /tests/unit/mock | |
parent | b10796ee6a798d9cf27945a775794a3f4ab0100f (diff) | |
download | vyos.vyos-5bf1112c8c015bff6f54d4b17a3571f665381e1e.tar.gz vyos.vyos-5bf1112c8c015bff6f54d4b17a3571f665381e1e.zip |
Clean up boilerplate ignores (#54)
Clean up boilerplate ignores
Reviewed-by: https://github.com/apps/ansible-zuul
Diffstat (limited to 'tests/unit/mock')
-rw-r--r-- | tests/unit/mock/path.py | 3 | ||||
-rw-r--r-- | tests/unit/mock/yaml_helper.py | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/tests/unit/mock/path.py b/tests/unit/mock/path.py index aea8ba1e..74b02be8 100644 --- a/tests/unit/mock/path.py +++ b/tests/unit/mock/path.py @@ -1,3 +1,6 @@ +from __future__ import absolute_import, division, print_function + +__metaclass__ = type from ansible_collections.vyos.vyos.tests.unit.compat.mock import MagicMock from ansible.utils.path import unfrackpath diff --git a/tests/unit/mock/yaml_helper.py b/tests/unit/mock/yaml_helper.py index 1a945f1b..5df30aae 100644 --- a/tests/unit/mock/yaml_helper.py +++ b/tests/unit/mock/yaml_helper.py @@ -1,3 +1,6 @@ +from __future__ import absolute_import, division, print_function + +__metaclass__ = type import io import yaml |