Skip to content

Commit

Permalink
update postgres and remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel-Faber committed Dec 10, 2023
1 parent 56bb802 commit 8d65f89
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ services:
- "5005:80"

postgres:
image: postgres:9.6
image: postgres:16.1
environment:
- POSTGRES_USER=allocation
- POSTGRES_PASSWORD=abc123
Expand Down
2 changes: 1 addition & 1 deletion src/allocation/domain/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from dataclasses import dataclass
from datetime import date
from typing import Optional, List, Set
from . import commands, events
from . import events


class Product:
Expand Down
1 change: 0 additions & 1 deletion tests/integration/test_uow.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import time
import traceback
from typing import List
from unittest.mock import Mock
import pytest
from allocation.domain import model
from allocation.service_layer import unit_of_work
Expand Down

0 comments on commit 8d65f89

Please sign in to comment.