1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2025-02-12 09:15:53 +00:00
bazarr/libs/html5lib/_trie/__init__.py

15 lines
289 B
Python
Raw Normal View History

2018-10-31 16:08:29 +00:00
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