From ebb0ea0527446cb779fe94d9c5673b1c2cb39f59 Mon Sep 17 00:00:00 2001 From: Markus Hauschild Date: Mon, 18 Oct 2021 18:17:31 +0200 Subject: [PATCH] Config: reformat whitespace according to PEP8 --- pydoorlock/Config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pydoorlock/Config.py b/pydoorlock/Config.py index d990fd1..e58c09a 100644 --- a/pydoorlock/Config.py +++ b/pydoorlock/Config.py @@ -53,5 +53,5 @@ class Config: return self.config.get(self.config_topic, key) @check_exists - def int(self,key): + def int(self, key): return self.config.getint(self.config_topic, key)