Skip to content

Commit 41b61bc

Browse files
committed
fix(client.http): add missing f to format string
1 parent e4ca84c commit 41b61bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/aleph/sdk/client/http.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def http_session(self) -> aiohttp.ClientSession:
6868
raise Exception(
6969
f"{self.__class__.__name__} can only be using within an async context manager.\n\n"
7070
"Please use it this way:\n\n"
71-
" async with {self.__class__.__name__}(...) as client:"
71+
f" async with {self.__class__.__name__}(...) as client:"
7272
)
7373

7474
return self._http_session

0 commit comments

Comments
 (0)