From 3adf56cdee1194f22736db3057d7a99e17d8d900 Mon Sep 17 00:00:00 2001 From: d3rnn <84808889+d3rnn@users.noreply.github.com> Date: Wed, 3 Jul 2024 19:30:23 +0000 Subject: [PATCH] fix W291 and E501 --- SoftLayer/CLI/virt/list.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SoftLayer/CLI/virt/list.py b/SoftLayer/CLI/virt/list.py index b491c471e..d30b4ff6a 100644 --- a/SoftLayer/CLI/virt/list.py +++ b/SoftLayer/CLI/virt/list.py @@ -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"),