Skip to content

Commit

Permalink
Nicer read_parquet prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
fjetter committed Mar 25, 2024
1 parent 2f5f085 commit 1e79286
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions dask_expr/io/parquet.py
Original file line number Diff line number Diff line change
Expand Up @@ -633,10 +633,8 @@ def columns(self):

@cached_property
def _name(self):
return (
funcname(type(self)).lower()
+ "-"
+ _tokenize_deterministic(self.checksum, *self.operands[:-1])
return "read_parquet-" + _tokenize_deterministic(
funcname(type(self)), self.checksum, *self.operands[:-1]
)

@property
Expand Down

0 comments on commit 1e79286

Please sign in to comment.