From 3f92fc66756c3af28be91d2d1db9734d8daf9b36 Mon Sep 17 00:00:00 2001 From: Ilenia <26656284+ilenia-magoni@users.noreply.github.com> Date: Tue, 14 May 2024 14:52:25 +0200 Subject: [PATCH] chore(curriculum): remove `__locals` from merge sort algorithm project (#54785) --- .../655cd899f8de09431eabb40c.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/07-scientific-computing-with-python/learn-data-structures-by-building-the-merge-sort-algorithm/655cd899f8de09431eabb40c.md b/curriculum/challenges/english/07-scientific-computing-with-python/learn-data-structures-by-building-the-merge-sort-algorithm/655cd899f8de09431eabb40c.md index 3dc7f7ea6d8..b0e37e6d4ac 100644 --- a/curriculum/challenges/english/07-scientific-computing-with-python/learn-data-structures-by-building-the-merge-sort-algorithm/655cd899f8de09431eabb40c.md +++ b/curriculum/challenges/english/07-scientific-computing-with-python/learn-data-structures-by-building-the-merge-sort-algorithm/655cd899f8de09431eabb40c.md @@ -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) `))}) ```