summaryrefslogtreecommitdiff
path: root/gr-utils/python/utils/gr_plot_fft
diff options
context:
space:
mode:
authorBrennan Ashton <bashton@brennanashton.com>2018-11-15 16:27:44 -0800
committerMartin Braun <martin.braun@ettus.com>2018-11-22 11:09:00 -0800
commit745b2b2d34cff22468ea9a4a785e82d3398dc4e6 (patch)
treeab34aaca154581a37c9d50c636a69cd10a6d7cf1 /gr-utils/python/utils/gr_plot_fft
parent2e8f3ad85e13045fcaf81368fb9372735c503e68 (diff)
gr-utils: Condense gr_plot commands and fix datatype arg
This removes all the gr_plot_* applications save for: - gr_plot (time-domain) - gr_plot_fft (FFT domain) - gr_plot_psd (Power Spectrum Density)
Diffstat (limited to 'gr-utils/python/utils/gr_plot_fft')
-rw-r--r--gr-utils/python/utils/gr_plot_fft2
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-utils/python/utils/gr_plot_fft b/gr-utils/python/utils/gr_plot_fft
index 59fc88b994..92a0b2501a 100644
--- a/gr-utils/python/utils/gr_plot_fft
+++ b/gr-utils/python/utils/gr_plot_fft
@@ -29,7 +29,7 @@ def main():
parser = plot_fft_base.setup_options()
args = parser.parse_args()
- dc = plot_fft_base(args.data_type, args.file, args)
+ plot_fft_base(None, args.file, args)
if __name__ == "__main__":
try: