Skip to content

Commit

Permalink
fix: SyntaxWarning when running viya-deployment-report (VIYAARK-308) (#…
Browse files Browse the repository at this point in the history
…119)

* fix: SyntaxWarning when running viya-deployment-report (VIYAARK-308)

* fix: review comment (VIYAARK-308)

* fix: rm inadvertent push of test file (VIYAARK-308)
  • Loading branch information
kevinlinglesas authored Aug 5, 2024
1 parent 4e7ab24 commit 8d73891
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1426,7 +1426,7 @@ def _get_process_memory_info(pid, module):

for row in processes:
# skip blank lines
if row is '' or not row:
if not row:
continue

nfields = len(row.split()) - 1
Expand Down

0 comments on commit 8d73891

Please sign in to comment.