Update app.py
Browse files
app.py
CHANGED
@@ -5,7 +5,7 @@ from bs4 import BeautifulSoup
|
|
5 |
DEF_SNIPPET = "print('Hello, World!')"
|
6 |
DEF_LANG = "Python"
|
7 |
|
8 |
-
def execute_snippet(code_snippet: str = DEF_SNIPPET, lang: str = DEF_LANG) -> str
|
9 |
lang_param = None
|
10 |
|
11 |
match lang:
|
|
|
5 |
DEF_SNIPPET = "print('Hello, World!')"
|
6 |
DEF_LANG = "Python"
|
7 |
|
8 |
+
def execute_snippet(code_snippet: str = DEF_SNIPPET, lang: str = DEF_LANG) -> str:
|
9 |
lang_param = None
|
10 |
|
11 |
match lang:
|