Skip to content

Commit

Permalink
Fix typo in API doc for create_bucket (#2101)
Browse files Browse the repository at this point in the history
  • Loading branch information
nickvigilante authored Oct 25, 2024
1 parent 34575ef commit 8ccbb1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tiledb/vfs.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,9 +188,9 @@ def is_empty_bucket(self, uri: _AnyPath) -> bool:
return self._is_empty_bucket(_to_path_str(uri))

def create_dir(self, uri: _AnyPath):
"""Check if an object store bucket is empty.
"""Create a directory at the specified input URI.
:param str uri: Input URI of the bucket
:param str uri: Input URI of the directory
"""
return self._create_dir(_to_path_str(uri))
Expand Down

0 comments on commit 8ccbb1c

Please sign in to comment.