From 3cecf9268b15bb0e9e2fedaeb2528bd3038beee6 Mon Sep 17 00:00:00 2001 From: Josh Morman <jmorman@gnuradio.org> Date: Wed, 24 Nov 2021 12:25:09 -0500 Subject: digital: pep8 formatting Signed-off-by: Josh Morman <jmorman@gnuradio.org> --- gr-digital/python/digital/qam.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gr-digital/python/digital/qam.py') diff --git a/gr-digital/python/digital/qam.py b/gr-digital/python/digital/qam.py index d74866b946..6e8951ef1e 100644 --- a/gr-digital/python/digital/qam.py +++ b/gr-digital/python/digital/qam.py @@ -243,8 +243,8 @@ def large_ampls_to_corners_mapping(side, points, width): # use the center point. c = ((real_x - side / 2.0 + 0.5) * width + (imag_x - side / 2.0 + 0.5) * width * 1j) - if (real_x >= extra_layers and real_x < side - extra_layers - and imag_x >= extra_layers and imag_x < side - extra_layers): + if (real_x >= extra_layers and real_x < side - extra_layers and + imag_x >= extra_layers and imag_x < side - extra_layers): # This is not an edge row/column. Find closest point. index = find_closest_point(c, points) else: -- cgit v1.2.3