Skip to content

Commit af76a5e

Browse files
committed
Ruff Fixes : E501 Line too long
1 parent c9207e2 commit af76a5e

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

data_structures/trie/radix_tree.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -217,10 +217,11 @@ def test_trie(self) -> None:
217217
assert root.find("bananas")
218218

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

0 commit comments

Comments
 (0)