Skip to content

Commit

Permalink
chore: fix conflict merge typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ncclementi committed Aug 26, 2024
1 parent 9287a91 commit e89ddd5
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 @@ -76,15 +76,15 @@ def _tables(self) -> list[str]:

def __getitem__(self, name) -> ir.Table:
try:
return self._backend().table(name)
return self._backend.table(name)
except Exception as exc:
raise KeyError(name) from exc

def __getattr__(self, name) -> ir.Table:
if name.startswith("_"):
raise AttributeError(name)
try:
return self._backend().table(name)
return self._backend.table(name)
except Exception as exc:
raise AttributeError(name) from exc

Expand Down

0 comments on commit e89ddd5

Please sign in to comment.