Skip to content

Commit

Permalink
Fix pre-commit issues
Browse files Browse the repository at this point in the history
  • Loading branch information
PSNAppz committed Apr 5, 2024
1 parent 41df7f5 commit a44d409
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
24 changes: 12 additions & 12 deletions tests/test_sync_mapper_controller.py
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
import pytest
from datetime import datetime
from unittest.mock import AsyncMock, patch, MagicMock
from unittest.mock import AsyncMock, MagicMock, patch

import pytest
from openg2p_g2pconnect_common_lib.common.schemas import (
RequestHeader,
StatusEnum,
SyncResponseHeader,
SyncResponseStatusReasonCodeEnum,
)
from openg2p_g2pconnect_common_lib.mapper.schemas import (
LinkRequest,
LinkRequestMessage,
LinkResponse,
SingleLinkResponse,
LinkResponseMessage,
LinkRequestMessage,
SingleLinkRequest,
SingleLinkResponse,
)
from openg2p_g2pconnect_common_lib.common.schemas import (
StatusEnum,
SyncResponseStatusReasonCodeEnum,
SyncResponseHeader,
RequestHeader,
)

from openg2p_spar_mapper_api.controllers.sync_mapper_controller import (
SyncMapperController,
)
from openg2p_spar_mapper_api.services import (
RequestValidationException,
RequestValidation,
RequestValidationException,
)


Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ deps =
[testenv:clean]
deps = coverage
skip_install = true
commands = coverage erase
commands = coverage erase

0 comments on commit a44d409

Please sign in to comment.