You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When code like the below is ran in an app to get the list of taps associated with a VM all but the last entry in the list has a comma at the end of it.
Code: taps = next((vm_['tap'] for vm_ in vms_info if vm_['name'] == 'some-vm'), None)
Example Results:
taps: ['mega_tap99,', 'mega_tap100'] or
taps: ['mega_tap92,', 'mega_tap93,', 'mega_tap94']
The text was updated successfully, but these errors were encountered:
When code like the below is ran in an app to get the list of taps associated with a VM all but the last entry in the list has a comma at the end of it.
Code:
taps = next((vm_['tap'] for vm_ in vms_info if vm_['name'] == 'some-vm'), None)
Example Results:
taps:
['mega_tap99,', 'mega_tap100']
ortaps:
['mega_tap92,', 'mega_tap93,', 'mega_tap94']
The text was updated successfully, but these errors were encountered: