Skip to content

Commit

Permalink
fix W291 and E501
Browse files Browse the repository at this point in the history
  • Loading branch information
d3rnn committed Jul 3, 2024
1 parent 5c411a6 commit 3adf56c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SoftLayer/CLI/virt/list.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
column_helper.Column('action', lambda guest: formatting.active_txn(guest),
mask='activeTransaction[id,transactionStatus[name,friendlyName]]'),
column_helper.Column('power_state', ('powerState', 'name')),
column_helper.Column('created_by',
lambda created_by: utils.lookup(created_by, 'billingItem', 'orderItem', 'order', 'userRecord', 'username'),
column_helper.Column('created_by', lambda created_by:
utils.lookup(created_by, 'billingItem', 'orderItem', 'order', 'userRecord', 'username'),
mask='billingItem[id,orderItem[id,order[id,userRecord[username]]]]'),
column_helper.Column('tags', lambda server: formatting.tags(server.get('tagReferences')),
mask="tagReferences.tag.name"),
Expand Down

0 comments on commit 3adf56c

Please sign in to comment.