mirror of
https://github.com/rembo10/headphones.git
synced 2026-03-21 12:19:27 +00:00
13 lines
212 B
Python
13 lines
212 B
Python
from __future__ import absolute_import, division, unicode_literals
|
|
|
|
from .py import Trie as PyTrie
|
|
|
|
Trie = PyTrie
|
|
|
|
try:
|
|
from .datrie import Trie as DATrie
|
|
except ImportError:
|
|
pass
|
|
else:
|
|
Trie = DATrie
|