🎨 Fix markdown code section rendering error in SQL tutorial (#1015)

This commit is contained in:
Vegard Stikbakke
2020-02-29 12:40:09 +01:00
committed by GitHub
parent 9958d93120
commit 48c2406495
2 changed files with 10 additions and 10 deletions

View File

@@ -558,31 +558,31 @@ For example, in a background task worker with <a href="http://www.celeryproject.
* `sql_app/database.py`:
```Python hl_lines=""
```Python
{!./src/sql_databases/sql_app/database.py!}
```
* `sql_app/models.py`:
```Python hl_lines=""
```Python
{!./src/sql_databases/sql_app/models.py!}
```
* `sql_app/schemas.py`:
```Python hl_lines=""
```Python
{!./src/sql_databases/sql_app/schemas.py!}
```
* `sql_app/crud.py`:
```Python hl_lines=""
```Python
{!./src/sql_databases/sql_app/crud.py!}
```
* `sql_app/main.py`:
```Python hl_lines=""
```Python
{!./src/sql_databases/sql_app/main.py!}
```