diff --git a/ksoftapi/__init__.py b/ksoftapi/__init__.py index 8b4caa9..462385b 100644 --- a/ksoftapi/__init__.py +++ b/ksoftapi/__init__.py @@ -8,7 +8,7 @@ __author__ = 'AndyTempel' __license__ = 'GNU' __copyright__ = 'Copyright 2018-2020 AndyTempel' -__version__ = '0.3.1a' +__version__ = '0.3.3a' import logging from collections import namedtuple @@ -19,7 +19,7 @@ VersionInfo = namedtuple('VersionInfo', 'major minor micro releaselevel serial') -version_info = VersionInfo(major=0, minor=3, micro=1, releaselevel='alpha', serial=0) +version_info = VersionInfo(major=0, minor=3, micro=3, releaselevel='alpha', serial=0) try: from logging import NullHandler diff --git a/ksoftapi/apis/kumo.py b/ksoftapi/apis/kumo.py index c017438..846a32b 100644 --- a/ksoftapi/apis/kumo.py +++ b/ksoftapi/apis/kumo.py @@ -100,5 +100,4 @@ async def currency(self, from_: str, to: str, value: str): if r.get('code', 200) == 404: raise NoResults - result = r['data'] - return Currency(result) + return Currency(r)