Skip to content

Commit 5db98f3

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent dee0a40 commit 5db98f3

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

tests/version/test_markers.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -163,10 +163,7 @@ def test_single_marker_union():
163163
m = parse_marker('sys_platform == "darwin"')
164164

165165
union = m.union(parse_marker('implementation_name == "cpython"'))
166-
assert (
167-
str(union)
168-
== 'sys_platform == "darwin" or implementation_name == "cpython"'
169-
)
166+
assert str(union) == 'sys_platform == "darwin" or implementation_name == "cpython"'
170167

171168
m = parse_marker('python_version >= "3.4"')
172169

0 commit comments

Comments
 (0)