Skip to content

Commit

Permalink
Fix imports issues
Browse files Browse the repository at this point in the history
  • Loading branch information
a-ruban committed Apr 16, 2018
1 parent 55a9e1f commit 5e04017
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


setup(
name='essentia-sia-api',
name='essentia-sia-api-test2',
version=__version__,
author=__authors__,
author_email=__email__,
Expand Down
6 changes: 3 additions & 3 deletions sia/sia.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Provide functionality for Sia decentrilized storage.
"""
from sia.constants import (
from constants import (
daemon as daemon_constants,
consensus as consensus_constants,
gateway as gateway_constants,
Expand All @@ -13,7 +13,7 @@
file as file_constants,
)

from sia.endpoints import (
from endpoints import (
daemon,
consensus,
gateway,
Expand All @@ -24,7 +24,7 @@
wallet,
file,
)
from sia.mixins.http import HttpMixinToDeprecate
from mixins.http import HttpMixinToDeprecate


class SiaToDeprecate(HttpMixinToDeprecate): # pylint: disable=too-many-public-methods
Expand Down

0 comments on commit 5e04017

Please # to comment.