From 5100598cb0765b6d89880fe8443e1678f52c1528 Mon Sep 17 00:00:00 2001 From: Michael Waskom Date: Wed, 1 May 2024 18:03:48 +0000 Subject: [PATCH] Fix string syntax --- modal/functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modal/functions.py b/modal/functions.py index 673e9a1a4..89289abbe 100644 --- a/modal/functions.py +++ b/modal/functions.py @@ -691,7 +691,7 @@ async def _load(self: _Function, resolver: Resolver, existing_object_id: Optiona else: reason = "" raise ExecutionError( - f"The {identity} has not been hydrated" f" with the metadata it needs to run on Modal{reason}." + f"The {identity} has not been hydrated with the metadata it needs to run on Modal{reason}." ) assert self._parent._client.stub serialized_params = serialize((args, kwargs))