1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-04-09 21:47:17 +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,15 +7,10 @@ __metaclass__ = type
import json
import os
import sys
import pytest
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 linode_api4.errors import ApiError as LinodeApiError
from linode_api4 import LinodeClient