From 29dccf3d8ac29db9d5082dac31e169303acaf0af Mon Sep 17 00:00:00 2001 From: Rafael Guterres Jeffman <rjeffman@redhat.com> Date: Wed, 9 Nov 2022 23:31:38 -0300 Subject: [PATCH] pylint: Fix pylint issues on utils/galaxyfy-module-EXAMPLES.py --- utils/galaxyfy-module-EXAMPLES.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/galaxyfy-module-EXAMPLES.py b/utils/galaxyfy-module-EXAMPLES.py index 31da3bb3..46a740be 100644 --- a/utils/galaxyfy-module-EXAMPLES.py +++ b/utils/galaxyfy-module-EXAMPLES.py @@ -37,7 +37,7 @@ def module_EXAMPLES(module_in, project_prefix, collection_prefix): example = True out_lines.append(line) continue - elif example and stripped in ["'''", '"""']: + if example and stripped in ["'''", '"""']: _out_lines, _changed = \ galaxyfy_playbook(project_prefix, collection_prefix, example_lines) -- GitLab