Fix TypeError with insertion sort challenge (#233)

This commit is contained in:
Belvie Moore 2018-04-25 21:24:32 -04:00 committed by Donne Martin
parent d898520439
commit ba3ec6f492

View File

@ -82,7 +82,7 @@
"source": [
"class InsertionSort(object):\n",
"\n",
" def sort(data):\n",
" def sort(self, data):\n",
" # TODO: Implement me\n",
" pass"
]