File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -37,17 +37,17 @@ def cli(env, identifier):
3737 inbound = '-'
3838 table .add_row (['Inbound Usage' , inbound ])
3939 if bandwidths ['hardware' ] != []:
40- table .add_row (['hardware' , _bw_table (bandwidths ['hardware' ])])
40+ table .add_row (['hardware' , * ( _bw_table (bandwidths ['hardware' ]) )])
4141 else :
4242 table .add_row (['hardware' , 'Not Found' ])
4343
4444 if bandwidths ['virtualGuests' ] != []:
45- table .add_row (['virtualGuests' , _virtual_table (bandwidths ['virtualGuests' ])])
45+ table .add_row (['virtualGuests' , * ( _virtual_table (bandwidths ['virtualGuests' ]) )])
4646 else :
4747 table .add_row (['virtualGuests' , 'Not Found' ])
4848
4949 if bandwidths ['bareMetalInstances' ] != []:
50- table .add_row (['Netscaler' , _bw_table (bandwidths ['bareMetalInstances' ])])
50+ table .add_row (['Netscaler' , * ( _bw_table (bandwidths ['bareMetalInstances' ]) )])
5151 else :
5252 table .add_row (['Netscaler' , 'Not Found' ])
5353
You can’t perform that action at this time.
0 commit comments