mirror of
https://github.com/morpheus65535/bazarr.git
synced 2024-11-14 19:54:38 +08:00
14 lines
289 B
Python
14 lines
289 B
Python
from __future__ import absolute_import, division, unicode_literals
|
|
|
|
from .py import Trie as PyTrie
|
|
|
|
Trie = PyTrie
|
|
|
|
# pylint:disable=wrong-import-position
|
|
try:
|
|
from .datrie import Trie as DATrie
|
|
except ImportError:
|
|
pass
|
|
else:
|
|
Trie = DATrie
|
|
# pylint:enable=wrong-import-position
|