summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Luevano <55825613+luevano@users.noreply.github.com>2019-12-23 12:39:28 -0700
committerDavid Luevano <55825613+luevano@users.noreply.github.com>2019-12-23 12:39:28 -0700
commitf5d72558ed6ec63c7de4940c29d4f6c92605a30d (patch)
tree447b1751c71c9a98b06de9fe77e5c9b9dbeaaf22
parentf8bd690096e432b313ee17baa93c7422b45ee9b8 (diff)
Fix init
-rw-r--r--lj_matrix/__init__.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/lj_matrix/__init__.py b/lj_matrix/__init__.py
index 0c2407a57..d59e3481c 100644
--- a/lj_matrix/__init__.py
+++ b/lj_matrix/__init__.py
@@ -20,7 +20,6 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
"""
-from lj_matrix.misc import printc
from lj_matrix.read_qm7_data import read_nc_data, read_db_data, read_qm7_data
from lj_matrix.c_matrix import c_matrix, c_matrix_multiple
from lj_matrix.lj_matrix import lj_matrix, lj_matrix_multiple
@@ -33,8 +32,7 @@ from lj_matrix.parallel_create_matrices import parallel_create_matrices
# If somebody does "from package import *", this is what they will
# be able to access:
-__all__ = ['printc',
- 'read_nc_data',
+__all__ = ['read_nc_data',
'read_db_data',
'read_qm7_data',
'c_matrix',