Commit f0a1d0cd authored by Hamaker, Alec's avatar Hamaker, Alec
Browse files

Merge branch 'o9w-develop-patch-84341' into 'develop'

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

See merge request !24
parents 1e5d0a92 b8e19a29
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