Skip to content

Commit

Permalink
Fixes formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
desertaxle committed Dec 11, 2024
1 parent 3e1b848 commit d5d944b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/prefect/results.py
Original file line number Diff line number Diff line change
Expand Up @@ -1166,15 +1166,17 @@ def has_cached_object(self) -> bool:

@abc.abstractmethod
@sync_compatible
async def get(self) -> R: ...
async def get(self) -> R:
...

@abc.abstractclassmethod
@sync_compatible
async def create(
cls: "Type[BaseResult[R]]",
obj: R,
**kwargs: Any,
) -> "BaseResult[R]": ...
) -> "BaseResult[R]":
...

@classmethod
def __dispatch_key__(cls, **kwargs):
Expand Down

0 comments on commit d5d944b

Please sign in to comment.