Skip to content

Commit 852d1d5

Browse files
committed
fix linters
1 parent 8b0f348 commit 852d1d5

File tree

1 file changed

+1
-1
lines changed
  • pydantic_extra_types

1 file changed

+1
-1
lines changed

pydantic_extra_types/s3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def __init__(self, value: str) -> None:
4848
if match is None:
4949
raise ValueError(f'Invalid S3 path: {value!r}')
5050
self.bucket: str = match.group(1)
51-
self._key: str = match.group(2)
51+
self.key: str = match.group(2)
5252
self.last_key: str = match.group(3)
5353

5454
def __str__(self) -> str: # pragma: no cover

0 commit comments

Comments
 (0)