Skip to content

Commit

Permalink
Fix inifinite loop
Browse files Browse the repository at this point in the history
  • Loading branch information
andrii-uniq authored Nov 14, 2024
1 parent ac5514d commit 1e5adda
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions dask_expr/_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -507,8 +507,6 @@ def __getattr__(self, key):
if key in _parameters:
idx = _parameters.index(key)
return self.operands[idx]
if is_dataframe_like(self._meta) and key in self._meta.columns:
return self[key]

link = "https://github.com/dask-contrib/dask-expr/blob/main/README.md#api-coverage"
raise AttributeError(
Expand Down

0 comments on commit 1e5adda

Please sign in to comment.