We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca5d91a commit 8bd943fCopy full SHA for 8bd943f
SoftLayer/CLI/formatting.py
@@ -467,6 +467,6 @@ def clean_null_table_rows(data):
467
"""Delete Null fields by '-', in a table"""
468
for index_i, row in enumerate(data.rows):
469
for index_j, value in enumerate(row):
470
- if str(value) + '' == 'NULL':
+ if str(value) == 'NULL':
471
data.rows[index_i][index_j] = '-'
472
return data
0 commit comments