Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/news-updater.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2016-05-20 00:16:05 +0300
committerBernhard Posselt <dev@bernhard-posselt.com>2016-06-03 02:28:34 +0300
commit33ca7f858c676e804317e9af3fff5f7a8dd87c94 (patch)
treeb2a118246ca0faff18ba307068adc042a93efbcd
parent08ee1534a0a993578da8dd14b035069dab418e5b (diff)
pep8
-rw-r--r--nextcloud_news_updater/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nextcloud_news_updater/config.py b/nextcloud_news_updater/config.py
index 414d1b0..6ec77a2 100644
--- a/nextcloud_news_updater/config.py
+++ b/nextcloud_news_updater/config.py
@@ -104,7 +104,7 @@ class ConfigParser:
return config
def _parse_ini_value(self, type_enum: int, contents: Any, key: str) -> \
- Union[str, int, bool]:
+ Union[str, int, bool]:
if type_enum == Types.integer:
return int(contents.get(key))
elif type_enum == Types.boolean: