chore(curriculum): remove pyodide from case converter project (#54759)

This commit is contained in:
Ilenia
2024-05-15 09:56:55 +02:00
committed by GitHub
parent 1a97345aa4
commit 3c9bbf2167
2 changed files with 3 additions and 3 deletions

View File

@@ -20,7 +20,7 @@ You should define a new function named `convert_to_snake_case()`. Don't forget t
```js
({
test: () => {
assert(__pyodide.runPython(`
assert(runPython(`
import inspect
a = __locals.get("convert_to_snake_case")
inspect.isfunction(a)
@@ -34,7 +34,7 @@ Your function should take a parameter named `pascal_or_camel_cased_string`.
```js
({
test: () => {
assert(__pyodide.runPython(`
assert(runPython(`
import inspect
a = __locals.get('convert_to_snake_case')
'pascal_or_camel_cased_string' in inspect.signature(a).parameters

View File

@@ -16,7 +16,7 @@ You should define a new function named `main()`. Don't forget the colon at the e
```js
({
test: () => {
assert(__pyodide.runPython(`
assert(runPython(`
import inspect
a = __locals.get("main")
inspect.isfunction(a)