1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-04-18 09:51:41 +00:00

remove unnecessary checks for unsupported python versions (#10327)

This commit is contained in:
Alexei Znamensky 2025-07-02 10:23:58 +12:00 committed by GitHub
parent 4323058809
commit 5a5b2d2eed
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 2 additions and 21 deletions

View file

@ -7,14 +7,8 @@ from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
import pytest
import sys
linode_apiv4 = pytest.importorskip('linode_api4')
mandatory_py_version = pytest.mark.skipif(
sys.version_info < (2, 7),
reason='The linode_api4 dependency requires python2.7 or higher'
)
from ansible.errors import AnsibleError
from ansible.parsing.dataloader import DataLoader