From 92f99f7ca92fb0068b7b3f376b726ea0b2d8ba74 Mon Sep 17 00:00:00 2001 From: s-hertel <19572925+s-hertel@users.noreply.github.com> Date: Wed, 12 Jul 2023 10:45:30 -0400 Subject: [PATCH] appease pep8 --- lib/ansible/cli/galaxy.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ansible/cli/galaxy.py b/lib/ansible/cli/galaxy.py index 358d4b56865..049c04743e4 100755 --- a/lib/ansible/cli/galaxy.py +++ b/lib/ansible/cli/galaxy.py @@ -150,8 +150,8 @@ def _display_collection(collection, cwidth=10, vwidth=7, min_cwidth=10, min_vwid cwidth=max(cwidth, min_cwidth), # Make sure the width isn't smaller than the header vwidth=max(vwidth, min_vwidth), pwidth=pwidth, - optional_column = ' ' if pwidth != 0 else '', - preference_marker = '*' if preferred else '' + optional_column=' ' if pwidth != 0 else '', + preference_marker='*' if preferred else '' ))