From c67281b69d115e778e9aa5f04e431e032c59b512 Mon Sep 17 00:00:00 2001
From: Tom Rondeau <tom@trondeau.com>
Date: Tue, 30 Dec 2014 18:38:01 -0500
Subject: 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.*
---
 gr-trellis/python/trellis/__init__.py | 1 -
 1 file changed, 1 deletion(-)

(limited to 'gr-trellis/python')

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
-- 
cgit v1.2.3