diff options
author | Martin Braun <martin.braun@ettus.com> | 2021-06-09 16:06:36 +0200 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2021-06-10 08:12:45 -0500 |
commit | a04e0c2d30327a96409792a55818ba209ea9dd0a (patch) | |
tree | fb3cd549aa7391015a24c09574ec2aac3b6f9292 /host/utils/uhd_power_cal.py | |
parent | ea76face99e8628a1c4189fd2d02849ea58d0c06 (diff) | |
download | uhd-a04e0c2d30327a96409792a55818ba209ea9dd0a.tar.gz uhd-a04e0c2d30327a96409792a55818ba209ea9dd0a.tar.bz2 uhd-a04e0c2d30327a96409792a55818ba209ea9dd0a.zip |
cal: Fix minor issues in the calibration utilities
- Whitespace issues
- Unclear help messages
- Unnecessary derive-from-object
Diffstat (limited to 'host/utils/uhd_power_cal.py')
-rw-r--r-- | host/utils/uhd_power_cal.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/utils/uhd_power_cal.py b/host/utils/uhd_power_cal.py index 6be4cc534..d2fcf83cd 100644 --- a/host/utils/uhd_power_cal.py +++ b/host/utils/uhd_power_cal.py @@ -40,14 +40,14 @@ def parse_args(): 'to override this value.', type=float) parser.add_argument( '--step', - help='Frequency Step. Defaults are device-specific.' + help='Frequency Step. Defaults are device-specific. ' 'Note that this is only a hint for the device object, which can choose ' 'to override this value. Devices can also measure at non-regular ' 'frequencies, e.g., to more accurately cover differences between bands.', type=float) parser.add_argument( '--gain-step', type=float, default=1, - help='Gain Step (dB). Defaults to 1 dB.' + help='Gain Step (dB). Defaults to 1 dB. ' 'Note that this is only a hint for the device object, which can choose ' 'to override this value. Devices can also measure at non-regular ' 'gain intervals.') |