Skip to content

Commit

Permalink
chore: remove unncessary set and list operation
Browse files Browse the repository at this point in the history
  • Loading branch information
ncclementi committed Sep 24, 2024
1 parent 68abf01 commit 7b47cc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ibis/backends/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def _gather_tables(self, database=None, like=None) -> list[str]:
tables.extend(
self._execute_if_exists(method_name, database=database, like=like)
)
return list(set(tables))
return tables

def __call__(self, database=None, like=None):
return self._gather_tables(database, like)
Expand Down

0 comments on commit 7b47cc2

Please sign in to comment.