mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-04-11 07:00:41 -04:00
chore(curriculum): remove pyodide from case converter project (#54759)
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user