Skip to content

Commit b0a30e5

Browse files
committed
python-ecosys/cbor2/cbor2/_decoder: Silence missing __eq__ warning.
Signed-off-by: Jos Verlinde <Jos_Verlinde@hotmail.com>
1 parent 5a90af0 commit b0a30e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python-ecosys/cbor2/cbor2/_decoder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class CBORDecodeError(Exception):
3434
break_marker = object()
3535

3636

37-
class CBORSimpleValue(object):
37+
class CBORSimpleValue(object): # noqa: PLW1641
3838
"""
3939
Represents a CBOR "simple value".
4040
:param int value: the value (0-255)

0 commit comments

Comments
 (0)