Skip to content

Commit c0aea30

Browse files
fix black linting error
Signed-off-by: Armin Tänzer <armin.taenzer@tngtech.com>
1 parent 000da4c commit c0aea30

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

tests/spdx3/writer/tag_value/test_write_document.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,7 @@ def test_render_creation_info():
2929
output_str = io.StringIO()
3030
write_spdx_document(spdx_document, text_output=output_str)
3131

32-
assert (
33-
output_str.getvalue()
34-
== """\
32+
assert output_str.getvalue() == """\
3533
## SPDX Document
3634
SPDXID: SPDXRef-FOO
3735
name: BAR
@@ -42,4 +40,3 @@ def test_render_creation_info():
4240
data license: CC0-1.0
4341
elements:
4442
""" # noqa: W291 # elements: are printed with a space
45-
)

0 commit comments

Comments
 (0)