Skip to content

Commit

Permalink
chore: add comment for followup
Browse files Browse the repository at this point in the history
  • Loading branch information
ncclementi committed Aug 22, 2024
1 parent 30a2344 commit e0409a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ibis/backends/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def __init__(self, backend: weakref.proxy):
for method_name in list_methods:
self._tables.extend(self._execute_if_exists(method_name))

# TODO: maybe there is a better way of removing duplicates, for now
# TODO: break this down into views/tables to be more explicit in repr (see #9859)
self._tables = list(set(self._tables))

def _execute_if_exists(self, method_name: str) -> list[str]:
Expand Down Expand Up @@ -1035,7 +1035,7 @@ def table(
"""

@functools.cached_property
@property
def tables(self):
"""An accessor for tables in the database.
Expand Down

0 comments on commit e0409a3

Please sign in to comment.