Skip to content

Commit

Permalink
removing prints
Browse files Browse the repository at this point in the history
  • Loading branch information
ilongin committed Jan 7, 2025
1 parent 7a19674 commit fddab8a
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/datachain/lib/dc.py
Original file line number Diff line number Diff line change
Expand Up @@ -1141,12 +1141,7 @@ def mutate(self, **kwargs) -> "Self":
mutated[signal.name.replace(value.name, name, 1)] = signal # type: ignore[union-attr]
elif isinstance(value, Func):
# adding new signal
# mutated[name] = value.get_column(schema)
v = value.get_column(schema)
print("in mutate")
print(v)
print(type(v))
mutated[name] = v
mutated[name] = value.get_column(schema)
else:
# adding new signal
mutated[name] = value
Expand Down

0 comments on commit fddab8a

Please sign in to comment.