From 48c11dd9cfebbe006cc1d8dbbfb3fabe769980ac Mon Sep 17 00:00:00 2001 From: Bilal Mahmoud Date: Fri, 18 Aug 2023 10:19:15 +0200 Subject: [PATCH] huh? --- libs/@local/hash-graph-types/graph_types/_schema.py | 2 +- libs/@local/hash-graph-types/graph_types/property_type.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/@local/hash-graph-types/graph_types/_schema.py b/libs/@local/hash-graph-types/graph_types/_schema.py index f88b25aed36..762a30f8d5b 100644 --- a/libs/@local/hash-graph-types/graph_types/_schema.py +++ b/libs/@local/hash-graph-types/graph_types/_schema.py @@ -30,7 +30,7 @@ async def create_model( *, actor_id: UUID, graph: "GraphAPIProtocol", - ) -> type[BaseModel] | Annotated[Any, ...]: # noqa: ANN401 + ) -> type[BaseModel] | Annotated[Any, ...]: ... diff --git a/libs/@local/hash-graph-types/graph_types/property_type.py b/libs/@local/hash-graph-types/graph_types/property_type.py index f622a0b6ccc..0ccb56a9785 100644 --- a/libs/@local/hash-graph-types/graph_types/property_type.py +++ b/libs/@local/hash-graph-types/graph_types/property_type.py @@ -67,7 +67,7 @@ async def create_model( *, actor_id: UUID, graph: "GraphAPIProtocol", - ) -> type[RootModel] | Annotated[Any, ...]: # noqa: ANN401 + ) -> type[RootModel] | Annotated[Any, ...]: return await self.root.create_model(actor_id=actor_id, graph=graph)