We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b0f348 commit 852d1d5Copy full SHA for 852d1d5
pydantic_extra_types/s3.py
@@ -48,7 +48,7 @@ def __init__(self, value: str) -> None:
48
if match is None:
49
raise ValueError(f'Invalid S3 path: {value!r}')
50
self.bucket: str = match.group(1)
51
- self._key: str = match.group(2)
+ self.key: str = match.group(2)
52
self.last_key: str = match.group(3)
53
54
def __str__(self) -> str: # pragma: no cover
0 commit comments