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
After #899images.tags() returns a list of images with tags instead of a list of tags (List[RemoteImage] instead of List[str]). It affected also the output of command neuro image tags which now outputs a list of full image URIs (unlike to neuro image ls which shorten URIs).
The documentation of command neuro image tags says only about a list of tags, not images. images.tags() is still not documented.
Returning a list of images from a method which does not contain "image" in name looks surprising to me. I think it would be better to make it returning a list of tags again. To help creating RemoteImage with tag we can add method RemoteImage.with_tag().
The text was updated successfully, but these errors were encountered:
After #899
images.tags()
returns a list of images with tags instead of a list of tags (List[RemoteImage]
instead ofList[str]
). It affected also the output of commandneuro image tags
which now outputs a list of full image URIs (unlike toneuro image ls
which shorten URIs).The documentation of command
neuro image tags
says only about a list of tags, not images.images.tags()
is still not documented.Returning a list of images from a method which does not contain "image" in name looks surprising to me. I think it would be better to make it returning a list of tags again. To help creating
RemoteImage
with tag we can add methodRemoteImage.with_tag()
.The text was updated successfully, but these errors were encountered: