From d6eb6931ea475190755028a898df3b861acd3a9c Mon Sep 17 00:00:00 2001 From: Elena ``of Valhalla'' Grandi Date: Sat, 13 Apr 2019 19:03:21 +0200 Subject: Add missing type hint --- pyapd/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyapd/config.py b/pyapd/config.py index 8c513b7..83e35b4 100644 --- a/pyapd/config.py +++ b/pyapd/config.py @@ -6,7 +6,7 @@ import ruamel.yaml class Config(): def __init__(self, config_fn: Optional[str] = None, **kw): self.config_fn = config_fn - self.data = {} + self.data: dict = {} if config_fn: self.load() -- cgit v1.2.3