docs: fixes is_open docstring on AsyncTable (#2150)

This commit is contained in:
andrew-pienso
2025-02-25 12:11:25 -05:00
committed by GitHub
parent 7ac5f74c80
commit 979a2d3d9d

View File

@@ -2683,7 +2683,7 @@ class AsyncTable:
self.close()
def is_open(self) -> bool:
"""Return True if the table is closed."""
"""Return True if the table is open."""
return self._inner.is_open()
def close(self):