Skip to content

Commit becc449

Browse files
committed
Ruff Fixes : E501 Line too long
1 parent 441efe5 commit becc449

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

data_structures/trie/radix_tree.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -218,8 +218,9 @@ def test_trie(self) -> None:
218218

219219
def test_trie_2(self) -> None:
220220
'''
221-
now add a new test case which inserts
222-
foobbb, fooaaa, foo in the given order and checks for different assertions
221+
now add a new test case which inserts
222+
foobbb, fooaaa, foo in the given order and checks
223+
for different assertions
223224
'''
224225
words = "foobbb fooaaa foo".split()
225226
root = RadixNode()

0 commit comments

Comments
 (0)