Skip to content

Commit 77761ff

Browse files
committed
Linter
1 parent c83d82f commit 77761ff

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/dipdup/codegen.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,9 @@ async def init(self, overwrite_types: bool = False, keep_schemas: bool = False)
149149
await self.verify_package()
150150

151151
@staticmethod
152-
def __match_entrypoint_schema(entrypoint_name, entrypoint_schemas) -> dict:
152+
def __match_entrypoint_schema(
153+
entrypoint_name: str, entrypoint_schemas: list[dict[str, dict[str, Any] | Any]]
154+
) -> dict[str, Any]:
153155
if entrypoint_name == 'default' and len(entrypoint_schemas) == 1:
154156
return entrypoint_schemas[0]['parameterSchema']
155157

0 commit comments

Comments
 (0)