Skip to content
This repository has been archived by the owner on Jan 13, 2023. It is now read-only.

Pep8 #147

Closed
wants to merge 16 commits into from
14 changes: 7 additions & 7 deletions iota/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,17 @@


# Activate codecs.
from .codecs import *
from .codecs import * # noqa

# Make some imports accessible from the top level of the package.
# Note that order is important, to prevent circular imports.
from .types import *
from .transaction import *
from .adapter import *
from .api import *
from .trits import *
from .types import * # noqa
from .transaction import * # noqa
from .adapter import * # noqa
from .api import * # noqa
from .trits import * # noqa

# :see: http://stackoverflow.com/a/2073599/
from pkg_resources import require
from pkg_resources import require # noqa
__version__ = require('PyOTA')[0].version
del require
Loading