Skip to content

Commit

Permalink
Fix for python3
Browse files Browse the repository at this point in the history
  • Loading branch information
jochenklar committed Mar 29, 2018
1 parent 0700ba7 commit 2f6874a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion daiquiri_client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
__license__ = 'Apache-2.0'
__copyright__ = 'Copyright 2018 Leibniz Institute for Astrophysics Potsdam (AIP)'

from client import Client
from .client import Client
6 changes: 3 additions & 3 deletions daiquiri_client/client.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import requests
import simplejson

from auth import Auth
from metadata import Metadata
from query import Query
from .auth import Auth
from .metadata import Metadata
from .query import Query


class Client(object):
Expand Down

0 comments on commit 2f6874a

Please sign in to comment.