add str method to S3Uri (#2703)

This commit is contained in:
Asher Foa
2025-06-13 06:43:42 -04:00
committed by GitHub
parent e1d42afca9
commit d3079eaa4a

View File

@@ -354,6 +354,9 @@ class S3Uri:
def uri(self) -> str:
return self._parsed.geturl()
def __str__(self) -> str:
return self.uri
def tag_set_to_dict(tag_set: list[dict[str, str]]) -> dict[str, str]:
"""Convert a list of tags to a dictionary."""