diff --git a/microservices/authentication/src/aggregates.py b/microservices/authentication/src/aggregates.py index 74cd72be..c2c1aa60 100644 --- a/microservices/authentication/src/aggregates.py +++ b/microservices/authentication/src/aggregates.py @@ -3,10 +3,10 @@ ) from minos.aggregate import ( - RootEntity, - ExternalEntity, Condition, + ExternalEntity, Ref, + RootEntity, ) diff --git a/microservices/cart/src/aggregates.py b/microservices/cart/src/aggregates.py index 4d38338b..8f80a69d 100644 --- a/microservices/cart/src/aggregates.py +++ b/microservices/cart/src/aggregates.py @@ -3,11 +3,11 @@ ) from minos.aggregate import ( - RootEntity, - ExternalEntity, Entity, EntitySet, + ExternalEntity, Ref, + RootEntity, ) diff --git a/microservices/order/src/aggregates.py b/microservices/order/src/aggregates.py index 62b2c594..18da1ad2 100644 --- a/microservices/order/src/aggregates.py +++ b/microservices/order/src/aggregates.py @@ -13,11 +13,11 @@ ) from minos.aggregate import ( - RootEntity, - ExternalEntity, Entity, EntitySet, + ExternalEntity, Ref, + RootEntity, ValueObject, ) diff --git a/microservices/product/src/commands/services.py b/microservices/product/src/commands/services.py index fe128d98..5ca4c9a1 100644 --- a/microservices/product/src/commands/services.py +++ b/microservices/product/src/commands/services.py @@ -5,8 +5,8 @@ ) from minos.aggregate import ( - NotFoundException, AlreadyDeletedException, + NotFoundException, ) from minos.common import ( UUID_REGEX, diff --git a/microservices/review/src/aggregates.py b/microservices/review/src/aggregates.py index a56ebfd2..d4a40a63 100644 --- a/microservices/review/src/aggregates.py +++ b/microservices/review/src/aggregates.py @@ -3,9 +3,9 @@ ) from minos.aggregate import ( - RootEntity, ExternalEntity, Ref, + RootEntity, ) diff --git a/microservices/ticket/src/aggregates.py b/microservices/ticket/src/aggregates.py index bc0ca32b..ba28d4fa 100644 --- a/microservices/ticket/src/aggregates.py +++ b/microservices/ticket/src/aggregates.py @@ -3,11 +3,11 @@ ) from minos.aggregate import ( - RootEntity, - ExternalEntity, Entity, EntitySet, + ExternalEntity, Ref, + RootEntity, )