Skip to content

Commit c2f4af5

Browse files
black
1 parent ea625db commit c2f4af5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

adala/skills/skillset.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ def apply(
203203
skill_output = skill.apply(skill_input, runtime)
204204

205205
# Commented out to not log customer data. Can be used when debugging if needed
206-
#print_dataframe(skill_output)
206+
# print_dataframe(skill_output)
207207

208208
if isinstance(skill, TransformSkill):
209209
# Columns to drop from skill_input because they are also in skill_output
@@ -252,7 +252,7 @@ async def aapply(
252252
skill_output = await skill.aapply(skill_input, runtime)
253253

254254
# Commented out to not log customer data. Can be used when debugging if needed
255-
#print_dataframe(skill_output)
255+
# print_dataframe(skill_output)
256256

257257
if isinstance(skill, TransformSkill):
258258
# Columns to drop from skill_input because they are also in skill_output

0 commit comments

Comments
 (0)