```
!!! tip
- If you where connecting to a different database (e.g. PostgreSQL), you would need to change the `DATABASE_URL`.
+ If you were connecting to a different database (e.g. PostgreSQL), you would need to change the `DATABASE_URL`.
## Create the tables
## A `dict` from the previous example
-In the previous example, we where returning a `dict` from our dependency ("dependable"):
+In the previous example, we are returning a `dict` from our dependency ("dependable"):
```Python hl_lines="7"
{!./src/dependencies/tutorial001.py!}