From b48ee35e70e4b9ef15be6f40aaa3ef02033fbe0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zoran=20Bo=C5=A1njak?= Date: Fri, 20 Dec 2019 18:57:36 +0100 Subject: [PATCH] fix flake8 errors --- ogn/client/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ogn/client/__init__.py b/ogn/client/__init__.py index c843bae..b2fe06a 100644 --- a/ogn/client/__init__.py +++ b/ogn/client/__init__.py @@ -1,9 +1,10 @@ from ogn.client.client import AprsClient # noqa: F401 from ogn.client.client import TelnetClient # noqa: F401 + class CustomSettings(object): def __init__(self, **kw): self.kw = kw + def __getattr__(self, name): return self.kw[name] -