From c1cc62b61f1e8728eaf7bc75bd70f7e8cdf5dba8 Mon Sep 17 00:00:00 2001 From: Tyrel Souza Date: Wed, 25 May 2016 10:16:21 -0400 Subject: [PATCH] fix import problems with prompt, still need to move it to another module --- celigo/__init__.py | 1 - celigo/core.py | 2 +- tests.py | 1 - 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/celigo/__init__.py b/celigo/__init__.py index 758fb10..aedfd25 100644 --- a/celigo/__init__.py +++ b/celigo/__init__.py @@ -1,2 +1 @@ from .core import BackupCeligo, DEFAULT_BASE_URL -from .prompt import prompt diff --git a/celigo/core.py b/celigo/core.py index 2eae9db..ba99de1 100644 --- a/celigo/core.py +++ b/celigo/core.py @@ -7,7 +7,7 @@ import json from slugify import slugify -from celigo import prompt +from .prompt import prompt L = logging.getLogger(__name__) DEFAULT_BASE_URL = "https://api.integrator.io/v1/" diff --git a/tests.py b/tests.py index 1bacf6a..103758f 100644 --- a/tests.py +++ b/tests.py @@ -1,5 +1,4 @@ # testing imports -import pytest import unittest import tempfile import os