diff options
author | Jeff Bradberry <jeff.bradberry@gmail.com> | 2024-02-07 20:37:00 +0100 |
---|---|---|
committer | Jeff Bradberry <jeff.bradberry@gmail.com> | 2024-02-07 21:55:19 +0100 |
commit | 2300b8fddf76c11edf4e54a4c7f65e564f9dc05d (patch) | |
tree | 7dd54ac283bb8478049dcd6a06f789fe847c2fb0 /awxkit | |
parent | rework with check if POST exists (diff) | |
download | awx-2300b8fddf76c11edf4e54a4c7f65e564f9dc05d.tar.xz awx-2300b8fddf76c11edf4e54a4c7f65e564f9dc05d.zip |
Fix linting problem
Diffstat (limited to 'awxkit')
-rw-r--r-- | awxkit/awxkit/api/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/awxkit/awxkit/api/utils.py b/awxkit/awxkit/api/utils.py index 5d09a01954..719f47904e 100644 --- a/awxkit/awxkit/api/utils.py +++ b/awxkit/awxkit/api/utils.py @@ -17,7 +17,7 @@ def parse_description(desc): options = {} desc_lines = [] if 'POST' in desc: - desc_lines = desc[desc.index('POST') :].splitlines() + desc_lines = desc[desc.index('POST') :].splitlines() else: desc_lines = desc.splitlines() for line in desc_lines: |