diff options
| author | 2018-10-31 15:12:46 +0000 | |
|---|---|---|
| committer | 2018-10-31 15:12:46 +0000 | |
| commit | a4d8d1f85557ced37ab41038e9fbd25d6332eebf (patch) | |
| tree | ee2886a839a32ac54cd64a0447044af6a19f7d08 /src/Config.py | |
| parent | Move setting BitBotFormatter's converter (to time.gmtime) to class definition as (diff) | |
| signature | ||
Fix some non-explicit None returns, add type hints to important variables
Diffstat (limited to 'src/Config.py')
| -rw-r--r-- | src/Config.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): |
