anatools 5.1.28__py3-none-any.whl → 6.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -332,6 +332,7 @@ try:
332
332
  while resp not in [str(i) for i in range(len(channels)+1)]:
333
333
  resp = input(f'Invalid input, please enter a number between 0 and {len(channels)}: ')
334
334
  remotechannel = channels[int(resp)-1]
335
+ print_color(f"Selected channel: {remotechannel['name']}", color='brand')
335
336
  if volumes != remotechannel['volumes']:
336
337
  client.edit_channel(channelId=remotechannel['channelId'], volumes=volumes)
337
338
  remotechannel = client.get_channels(channelId=remotechannel['channelId'])[0]
@@ -493,6 +494,7 @@ try:
493
494
  while resp not in [str(i) for i in range(len(services)+1)]:
494
495
  resp = input(f'Invalid input, please enter a number between 0 and {len(services)}: ')
495
496
  remoteservice = services[int(resp)-1]
497
+ print_color(f"Selected service: {remoteservice['name']}", color='brand')
496
498
  if volumes != remoteservice['volumes']:
497
499
  client.edit_service(serviceId=remoteservice['serviceId'], volumes=volumes)
498
500
  remoteservice = client.get_services(serviceId=remoteservice['serviceId'])[0]