From 850ff3b2bfcd4450e1d06194906a80f928c9e604 Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Mon, 21 Feb 2022 12:16:52 +0100 Subject: python: Add __init__ to uhd.utils Without this, the following code fails: >>> import uhd >>> U = uhd.usrp.MultiUSRP("type=x4xx") >>> M = U.get_mpm_client() Traceback (most recent call last): File "", line 1, in M = U.get_mpm_client() File ".../uhd/usrp/multi_usrp.py", line 37, in setattr(self, 'get_mpm_client', lambda: _get_mpm_client(token, mb_args)) File ".../uhd/usrp/multi_usrp.py", line 19, in _get_mpm_client from uhd.utils import mpmtools ModuleNotFoundError: No module named 'uhd.utils' --- host/python/uhd/utils/__init__.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 host/python/uhd/utils/__init__.py (limited to 'host/python') diff --git a/host/python/uhd/utils/__init__.py b/host/python/uhd/utils/__init__.py new file mode 100644 index 000000000..e69de29bb -- cgit v1.2.3