Skip to content

Commit 7b3b391

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 8dca3e8 commit 7b3b391

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

data_structures/trie/radix_tree.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -218,11 +218,11 @@ def test_trie(self) -> None:
218218
assert root.find("bananas")
219219

220220
def test_trie_2(self) -> None:
221-
'''
221+
"""
222222
now add a new test case which inserts
223223
foobbb, fooaaa, foo in the given order and checks
224224
for different assertions
225-
'''
225+
"""
226226
words = "foobbb fooaaa foo".split()
227227
root = RadixNode()
228228
root.insert_many(words)

0 commit comments

Comments
 (0)