diff options
author | Tom Rondeau <tom@trondeau.com> | 2014-12-30 18:38:01 -0500 |
---|---|---|
committer | Tom Rondeau <tom@trondeau.com> | 2014-12-30 18:38:01 -0500 |
commit | c67281b69d115e778e9aa5f04e431e032c59b512 (patch) | |
tree | a5a4c48d14e9cd20ee8cbb04a50555b3c17a0477 /gr-trellis/python | |
parent | 67a9f874e6bbd8f1fbf849fd2e5573b719610a56 (diff) |
trellis: remove import of fsm_utils from __init__.py for gr-trellis.
fsm_utils uses scipy, which is not a required dependency. Adding this to the trellis import then won't work if you don't have scipy.
These imports work:
from gnuradio.trellis.fsm_utils as fu
from gnuradio.trells import fsm_utils
This will not:
from gnuradio import trellis
trellis.fsm_utils.*
Diffstat (limited to 'gr-trellis/python')
-rw-r--r-- | gr-trellis/python/trellis/__init__.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gr-trellis/python/trellis/__init__.py b/gr-trellis/python/trellis/__init__.py index 662aa58197..a6b5ed0038 100644 --- a/gr-trellis/python/trellis/__init__.py +++ b/gr-trellis/python/trellis/__init__.py @@ -33,4 +33,3 @@ except ImportError: from trellis_swig import * # import any pure python here -import fsm_utils |