Skip to content

Commit

Permalink
use absolute import for python 3 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
myuwono committed Feb 6, 2017
1 parent 4318feb commit 1565129
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/main/python/covata/delta/api/__init__.py
Expand Up @@ -12,7 +12,9 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from api_client import ApiClient
from requests_client import RequestsApiClient
from __future__ import absolute_import

from .api_client import ApiClient
from .requests_client import RequestsApiClient

__all__ = ['ApiClient', 'RequestsApiClient']

0 comments on commit 1565129

Please sign in to comment.