Hello everyone, I am new here. I am trying to solve the Tisbury Treasure Hunt task 5. It is asking to return a docstring and I am not getting at that.
Here, clean_up take tuple of tuples as parameter and output is needed in docstring. Please help me!
This is the code:
def clean_up(combined_record_group):
report = []
for records in combined_record_group:
record = list(records)
del record[1]
report.append(record)
return """ """.join(str(report))
Its showing the error shown below:
AssertionError:
"[ [ ' S c r i m s h a w e d W h a l e [1794 chars] ] ]" != "('Scrimshawed Whale Tooth', 'Deserted Doc[875 chars]')\n"
Diff is 2753 characters long. Set self.maxDiff to None to see it.