From 34aaa9c7ba7a46a161486603690ce7c852800f81 Mon Sep 17 00:00:00 2001 From: saisuraj27 Date: Mon, 5 Feb 2024 23:55:22 +0530 Subject: [PATCH] Fixed indentation errors. --- contrib/pyln-client/pyln/client/plugin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/pyln-client/pyln/client/plugin.py b/contrib/pyln-client/pyln/client/plugin.py index 28327b602..3855022b2 100644 --- a/contrib/pyln-client/pyln/client/plugin.py +++ b/contrib/pyln-client/pyln/client/plugin.py @@ -950,14 +950,14 @@ class Plugin(object): v = d.get(key) if not isinstance(v, str): raise TypeError("Wrong argument to init: expected {key} to be" - " a string, got {v}".format(key=key, v=v)) + " a string, got {v}".format(key=key, v=v)) return v def verify_bool(d: Dict[str, JSONType], key: str) -> bool: v = d.get(key) if not isinstance(v, bool): raise TypeError("Wrong argument to init: expected {key} to be" - " a bool, got {v}".format(key=key, v=v)) + " a bool, got {v}".format(key=key, v=v)) return v self.rpc_filename = verify_str(configuration, 'rpc-file')