From a75d7088c4895cf43073b92f0f13c1b712dd8b7b Mon Sep 17 00:00:00 2001 From: Karamaz0V1 Date: Thu, 7 Mar 2019 08:20:29 +0100 Subject: [PATCH] Import sub-package in main package --- .gitignore | 1 + idefix/__init__.py | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index fe762b6..637a53d 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ doc/_build doc/source __pycache__ +log/ diff --git a/idefix/__init__.py b/idefix/__init__.py index 1f9c0d3..3a51d50 100644 --- a/idefix/__init__.py +++ b/idefix/__init__.py @@ -9,4 +9,7 @@ Utils and production pipelines for processing LiDAR point clouds. """ -__all__ = ['utils'] +__all__ = ['utils', 'io'] + +from . import utils +from . import io