mirror of
https://github.com/rembo10/headphones.git
synced 2026-05-21 11:05:32 +01:00
2110eb9855
This reverts commit 982594a4a5.
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
|