From e5631795951367b8acde8bce1dda8d5297855903 Mon Sep 17 00:00:00 2001 From: Lars Date: Wed, 7 Feb 2024 15:03:04 +0100 Subject: [PATCH] Fixed lint issues --- tests/test_encode_decode.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/test_encode_decode.py b/tests/test_encode_decode.py index d8bdca5b..a8c01813 100644 --- a/tests/test_encode_decode.py +++ b/tests/test_encode_decode.py @@ -48,8 +48,8 @@ def test_encode_decode(content, mode): assert content == decode(qr) -@pytest.mark.skipif(IS_MUSL, reason="zbar does not support latin1 with musl") # See -def test_encode_decode_latin1(): +@pytest.mark.skipif(IS_MUSL, reason="zbar does not support latin1 with musl") +def test_encode_decode_latin1(): # See content = 'Märchenbücher' qr = segno.make_qr(content) assert 'byte' == qr.mode @@ -80,6 +80,5 @@ def test_pyqrcode_issue76(): assert content == decode(qr) - if __name__ == '__main__': pytest.main([__file__])