mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-01 00:43:37 +00:00
12 lines
212 B
Python
12 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
|