Skip to content

Commit 3e4a386

Browse files
pre-commit-ci[bot]rtron-24
authored andcommitted
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent af76a5e commit 3e4a386

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

data_structures/trie/radix_tree.py

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
with its parent [https://en.wikipedia.org/wiki/Radix_tree]
77
"""
88

9+
910
class RadixNode:
1011
def __init__(self, prefix: str = "", is_leaf: bool = False) -> None:
1112
# Mapping from the first character of the prefix of the node

0 commit comments

Comments
 (0)