Commit b8e19a29 authored by Wohlgemuth, Jason's avatar Wohlgemuth, Jason
Browse files

fix(docs): Add syntax highlighting to code snippets in README

parent 1e5d0a92
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -43,7 +43,7 @@ abstract classes to interact with different types of databases and provide
additional functionality not provided by the `Database` class. Below is an 
example of how to create a Database class that uses the PostgresMixin:

```
```python
from common.mixins.postgres import PostgresMixin
from common.database import Database

@@ -57,7 +57,7 @@ with PostgresDatabase() as db:
```

### Creating a CRUD table with crud_table.py
```
```python
from common.mixins.postgres import PostgresMixin
from common.database import Database
from common.crud_table import CRUDTable