chore(curriculum): remove __locals from merge sort algorithm project (#54785)

This commit is contained in:
Ilenia 2024-05-14 14:52:25 +02:00 committed by GitHub
parent fd76d33485
commit 3f92fc6675
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -22,7 +22,7 @@ You should declare a function named `merge_sort`. Don't forget use the `pass` ke
```js
({ test: () => assert(__pyodide.runPython(`
import inspect
inspect.isfunction(__locals.get("merge_sort"))
inspect.isfunction(merge_sort)
`))})
```