Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion tribev2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
# This source code is licensed under the license found in the
# LICENSE file in the root directory of this source tree.

from tribev2.demo_utils import TribeModel
try:
from tribev2.demo_utils import TribeModel
except ImportError:
# Optional demo dependencies may be unavailable
TribeModel = None

__all__ = ["TribeModel"]