python-ogn-client/ogn/client/__init__.py

11 wiersze
260 B
Python
Czysty Zwykły widok Historia

2019-06-07 17:43:07 +00:00
from ogn.client.client import AprsClient # noqa: F401
2019-09-07 14:26:32 +00:00
from ogn.client.client import TelnetClient # noqa: F401
2019-12-20 17:57:36 +00:00
class CustomSettings(object):
def __init__(self, **kw):
self.kw = kw
2019-12-20 17:57:36 +00:00
def __getattr__(self, name):
return self.kw[name]