Skip to content

Commit 919ae8c

Browse files
committed
make pylint happy, again
1 parent dd4fccb commit 919ae8c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

meshtastic/tests/test_util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,7 @@ def test_acknowledgement_reset():
589589
lambda x: x not in [''] and x[0] not in "_" and x[-1] not in '_' and not re.search(r'__', x)
590590
))
591591
def test_roundtrip_snake_to_camel_camel_to_snake(a_string):
592+
"""Test that snake_to_camel and camel_to_snake roundtrip each other"""
592593
value0 = snake_to_camel(a_string=a_string)
593594
value1 = camel_to_snake(a_string=value0)
594595
assert a_string == value1, (a_string, value1)
595-

0 commit comments

Comments
 (0)