Skip to content

Commit f21ae54

Browse files
committed
Fix typos
1 parent 7b5a400 commit f21ae54

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tiledb/ctx.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ def dict(self, prefix: str = ""):
209209
210210
:param str prefix: return only parameters with a given prefix
211211
:rtype: dict
212-
:return: Config parameter / values as a a Python dict
212+
:return: Config parameter / values as a Python dict
213213
214214
"""
215215
return dict(ConfigItems(self, prefix=prefix))

tiledb/vfs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def write(self, file: lt.FileHandle, buff: Union[str, bytes]):
9595
"""
9696
if isinstance(file, FileIO):
9797
raise lt.TileDBError(
98-
"`tiledb.VFS().open` now returns a a FileIO object. Use "
98+
"`tiledb.VFS().open` now returns a FileIO object. Use "
9999
"`FileIO.write`. This message will be removed in 0.21.0.",
100100
)
101101
if isinstance(buff, str):
@@ -115,7 +115,7 @@ def read(self, file: lt.FileHandle, offset: int, nbytes: int) -> bytes:
115115
"""
116116
if isinstance(file, FileIO):
117117
raise lt.TileDBError(
118-
"`tiledb.VFS().open` now returns a a FileIO object. Use "
118+
"`tiledb.VFS().open` now returns a FileIO object. Use "
119119
"`FileIO.seek` and `FileIO.read`. This message will be removed "
120120
"in 0.21.0."
121121
)

0 commit comments

Comments
 (0)