1#
2# Copyright 2020 Ettus Research, a National Instruments Brand
3#
4# SPDX-License-Identifier: GPL-3.0-or-later
5#
6""" @package usrp
7Python UHD module containing the MultiUSRP and other objects
8"""
9
10from .multi_usrp import MultiUSRP
11# Disable PyLint because the entire libtypes modules is a list of renames. It is
12# thus less redundant to do a wildcard import, even if generally discouraged.
13# We could also paste the contents of libtypes.py into here, but by leaving it
14# separate we avoid importing the lib module in this __init__ file.
15# pylint: disable=wildcard-import
16from .libtypes import *
17# pylint: enable=wildcard-import
18
19from . import cal
20