diff options
author | Nicholas Corgan <n.corgan@gmail.com> | 2021-05-05 20:38:40 -0500 |
---|---|---|
committer | Jeff Long <willcode4@gmail.com> | 2021-05-06 08:43:54 -0400 |
commit | 0c178cc7423a030127bcd25652167c016face37e (patch) | |
tree | 7c262e42456e9ec5a20691d1b3e3853d8d807bff /gnuradio-runtime/python | |
parent | 8f215a66d5c845c8e7ff6a6e90567a569beb565c (diff) |
soapy: added Python support for Soapy types needed for full API support
* Fixed gr-soapy Python import
* Partially addresses https://github.com/gnuradio/gnuradio/issues/4571
Signed-off-by: Nicholas Corgan <n.corgan@gmail.com>
Diffstat (limited to 'gnuradio-runtime/python')
-rw-r--r-- | gnuradio-runtime/python/gnuradio/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnuradio-runtime/python/gnuradio/__init__.py b/gnuradio-runtime/python/gnuradio/__init__.py index 45bc91bf4d..7e8633b746 100644 --- a/gnuradio-runtime/python/gnuradio/__init__.py +++ b/gnuradio-runtime/python/gnuradio/__init__.py @@ -59,3 +59,4 @@ if path.endswith(path_ending): __path__.append(os.path.join(build_path, 'gr-pdu', 'python')) __path__.append(os.path.join(build_path, 'gr-network', 'python')) __path__.append(os.path.join(build_path, 'gr-zeromq', 'python')) + __path__.append(os.path.join(build_path, 'gr-soapy', 'python')) |