diff --git a/src/prefect/client/orchestration/_blocks_types/client.py b/src/prefect/client/orchestration/_blocks_types/client.py index 4dadcf62408c..921a8d08c68d 100644 --- a/src/prefect/client/orchestration/_blocks_types/client.py +++ b/src/prefect/client/orchestration/_blocks_types/client.py @@ -24,8 +24,8 @@ class BlocksTypeClient(BaseClient): def read_block_documents_by_type( self, block_type_slug: str, - offset: "int | None" = None, - limit: "int | None" = None, + offset: int | None = None, + limit: int | None = None, include_secrets: bool = True, ) -> "list[BlockDocument]": """Retrieve block documents by block type slug.