Skip to content

Commit d62c26a

Browse files
author
Sergio García Prado
committed
ISSUE #98
* Reformat code.
1 parent 8cf6238 commit d62c26a

File tree

2 files changed

+4
-4
lines changed
  • packages/core
    • minos-microservice-aggregate/minos/aggregate/events/repositories/database/factories
    • minos-microservice-networks/tests

2 files changed

+4
-4
lines changed

packages/core/minos-microservice-aggregate/minos/aggregate/events/repositories/database/factories/abc.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
ABC,
33
abstractmethod,
44
)
5-
from collections.abc import Iterable
5+
from collections.abc import (
6+
Iterable,
7+
)
68
from datetime import (
79
datetime,
810
)

packages/core/minos-microservice-networks/tests/utils.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -172,9 +172,7 @@ class FakeBrokerSubscriberQueueDatabaseOperationFactory(
172172
):
173173
"""For testing purposes"""
174174

175-
def build_count(
176-
self, retry: int, topics: Iterable[str] = tuple(), *args, **kwargs
177-
) -> DatabaseOperation:
175+
def build_count(self, retry: int, topics: Iterable[str] = tuple(), *args, **kwargs) -> DatabaseOperation:
178176
"""For testing purposes"""
179177
return FakeDatabaseOperation("count_not_processed")
180178

0 commit comments

Comments
 (0)