We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3e581d commit 8deeca0Copy full SHA for 8deeca0
pythainlp/tokenize/trie.py
@@ -1,8 +1,9 @@
1
# -*- coding: utf-8 -*-
2
class Trie:
3
-
+
4
class Node(object):
5
__slots__ = 'end', 'children'
6
7
def __init__(self):
8
self.end = False
9
self.children = {}
0 commit comments