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
Ability to delete skaha sessions by name, rather than needing to input the ID.
Example code below:
prefix = 'rn3-baseband'
for response in s.fetch():
if response.get('type') == 'headless' and (prefix in response.get('name')):
print(f"Deleting : {response.get('name')}")
s.destroy(response.get('id'))
The text was updated successfully, but these errors were encountered:
Ability to delete skaha sessions by name, rather than needing to input the ID.
Example code below:
The text was updated successfully, but these errors were encountered: