File tree Expand file tree Collapse file tree 2 files changed +2
-12
lines changed Expand file tree Collapse file tree 2 files changed +2
-12
lines changed Original file line number Diff line number Diff line change @@ -447,15 +447,10 @@ def _get_final_path(self, path: str) -> str:
447
447
return f"{ self .id } /{ path } "
448
448
449
449
450
- # this class is returned by methods that fetch buckets, for example StorageBucketAPI.get_bucket
451
- # adding this mixin on the BaseBucket means that those bucket objects can also be used to
452
- # run methods like `upload` and `download`
453
450
@dataclass (repr = False )
454
- class AsyncBucket (BaseBucket , AsyncBucketActionsMixin ):
451
+ class AsyncBucket (BaseBucket ):
455
452
"""Represents a storage bucket."""
456
453
457
- _client : AsyncClient = field (repr = False )
458
-
459
454
460
455
@dataclass
461
456
class AsyncBucketProxy (AsyncBucketActionsMixin ):
Original file line number Diff line number Diff line change @@ -445,15 +445,10 @@ def _get_final_path(self, path: str) -> str:
445
445
return f"{ self .id } /{ path } "
446
446
447
447
448
- # this class is returned by methods that fetch buckets, for example StorageBucketAPI.get_bucket
449
- # adding this mixin on the BaseBucket means that those bucket objects can also be used to
450
- # run methods like `upload` and `download`
451
448
@dataclass (repr = False )
452
- class SyncBucket (BaseBucket , SyncBucketActionsMixin ):
449
+ class SyncBucket (BaseBucket ):
453
450
"""Represents a storage bucket."""
454
451
455
- _client : SyncClient = field (repr = False )
456
-
457
452
458
453
@dataclass
459
454
class SyncBucketProxy (SyncBucketActionsMixin ):
You can’t perform that action at this time.
0 commit comments