summaryrefslogtreecommitdiff
path: root/_test/test_z_data.py
diff options
context:
space:
mode:
Diffstat (limited to '_test/test_z_data.py')
-rw-r--r--_test/test_z_data.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/_test/test_z_data.py b/_test/test_z_data.py
index 99810aa..f4e47cf 100644
--- a/_test/test_z_data.py
+++ b/_test/test_z_data.py
@@ -170,7 +170,7 @@ class TestYAMLData(object):
yaml_version = d.get('yaml_version')
if 'python' in d:
if not check_python_version(d['python']):
- pytest.skip("unsupported version")
+ pytest.skip('unsupported version')
idx += 1
data = output = confirm = python = None
for doc in docs[idx:]:
@@ -230,7 +230,7 @@ def check_python_version(match, current=None):
# assert m[0].isdigit()
# assert m[-1].isdigit()
m = [int(x) for x in m.split('.')]
- current_len = current[:len(m)]
+ current_len = current[: len(m)]
# print(m, current, current_len)
if minimal:
if current_len >= m: