diff options
author | Martin Braun <martin.braun@ettus.com> | 2020-06-09 16:38:14 +0200 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2020-06-10 12:46:33 -0500 |
commit | f04d109936249606afe92cac4add2ecf7c73d937 (patch) | |
tree | 7acce55cafefe15b0f77cf1db2b2178f980e0795 /host/tests/devtest/devtest_b2xx.py | |
parent | ffb9187944814dce244b433b4f6bad08c935473e (diff) | |
download | uhd-f04d109936249606afe92cac4add2ecf7c73d937.tar.gz uhd-f04d109936249606afe92cac4add2ecf7c73d937.tar.bz2 uhd-f04d109936249606afe92cac4add2ecf7c73d937.zip |
b200: tests: Fix PyLint issues in B200 devtest
Diffstat (limited to 'host/tests/devtest/devtest_b2xx.py')
-rwxr-xr-x | host/tests/devtest/devtest_b2xx.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/host/tests/devtest/devtest_b2xx.py b/host/tests/devtest/devtest_b2xx.py index 49ffeea37..2134d11b5 100755 --- a/host/tests/devtest/devtest_b2xx.py +++ b/host/tests/devtest/devtest_b2xx.py @@ -8,6 +8,10 @@ """ Run device tests for the B2xx series. """ + +# pylint: disable=wrong-import-position +# pylint: disable=unused-import + from usrp_probe_test import uhd_usrp_probe_test from python_api_test import uhd_python_api_test from benchmark_rate_test import uhd_benchmark_rate_test @@ -90,4 +94,3 @@ from tx_bursts_test import uhd_tx_bursts_test from test_pps_test import uhd_test_pps_test from gpio_test import gpio_test from list_sensors_test import list_sensors_test - |