File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
packages/models-library/tests Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 11import pytest
22from faker import Faker
3+ from models_library .api_schemas_webserver ._base import (
4+ OutputSchema as WebServerOutputSchema ,
5+ )
6+ from models_library .api_schemas_webserver .projects import (
7+ ProjectGet ,
8+ )
39from models_library .batch_operations import BatchGetEnvelope , create_batch_ids_validator
410from models_library .generics import Envelope
11+ from models_library .projects import ProjectID
512from pydantic import TypeAdapter , ValidationError
613
714
@@ -73,13 +80,6 @@ def test_create_batch_ids_validator(
7380
7481
7582def test_composing_schemas_for_batch_operations (faker : Faker ):
76- from models_library .api_schemas_webserver ._base import ( # noqa: PLC0415
77- OutputSchema as WebServerOutputSchema ,
78- )
79- from models_library .api_schemas_webserver .projects import ( # noqa: PLC0415
80- ProjectGet ,
81- )
82- from models_library .projects import ProjectID # noqa: PLC0415
8383
8484 # inner schema model
8585 class WebServerProjectBatchGetSchema (
You can’t perform that action at this time.
0 commit comments