Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
nielstron committed Feb 27, 2019
2 parents a163e19 + 4ba082c commit b2d0a77
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions pyblnet/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

from .blnet_web import BLNETWeb, test_blnet
from .blnet_conn import BLNETDirect
from .blnet import BLNET
import warnings

try:
from .blnet_web import BLNETWeb, test_blnet
from .blnet_conn import BLNETDirect
from .blnet import BLNET
except ImportError as e:
warnings.warn(ImportWarning(e))

VERSION = (0, 7, 5)

Expand Down

0 comments on commit b2d0a77

Please sign in to comment.