From 3ec14c9d6c140c752c64791d1d8ba32324ab35f7 Mon Sep 17 00:00:00 2001 From: madsmpedersen <m@madsp.dk> Date: Wed, 25 Nov 2015 15:23:42 +0100 Subject: [PATCH] from wetb.hawc2 import HTCFile, LogFile now works --- wetb/hawc2/__init__.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/wetb/hawc2/__init__.py b/wetb/hawc2/__init__.py index e69de29..dc81279 100644 --- a/wetb/hawc2/__init__.py +++ b/wetb/hawc2/__init__.py @@ -0,0 +1,7 @@ +d = None +d = dir() + +from .htc_file import HTCFile +from .log_file import LogFile + +__all__ = sorted([m for m in set(dir()) - set(d)]) -- GitLab