increase readability by using f-strings (#1597)
* increase readability by using f-strings * readd merge conflict stuff --------- Co-authored-by: calle <93376500+callebtc@users.noreply.github.com>
This commit is contained in:
@@ -60,7 +60,7 @@ class SparkWallet(Wallet):
|
||||
httpx.HTTPError,
|
||||
httpx.TimeoutException,
|
||||
) as exc:
|
||||
raise UnknownError("error connecting to spark: " + str(exc))
|
||||
raise UnknownError(f"error connecting to spark: {exc}")
|
||||
|
||||
try:
|
||||
data = r.json()
|
||||
|
||||
Reference in New Issue
Block a user