From a4d8d1f85557ced37ab41038e9fbd25d6332eebf Mon Sep 17 00:00:00 2001 From: jesopo Date: Wed, 31 Oct 2018 15:12:46 +0000 Subject: Fix some non-explicit None returns, add type hints to important variables --- src/Config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Config.py') diff --git a/src/Config.py b/src/Config.py index dacb14dd..57fc9b0e 100644 --- a/src/Config.py +++ b/src/Config.py @@ -3,7 +3,7 @@ import configparser, os, typing class Config(object): def __init__(self, location: str): self.location = location - self._config = {} + self._config = {} # type: typing.Dict[str, str] self.load() def load(self): -- cgit v1.3.1-10-gc9f91