Skip to content

Commit 6ee4061

Browse files
authored
Merge pull request #145 from NREL/fix_package_issue
fixing packaging issue
2 parents af59324 + 10f7079 commit 6ee4061

2 files changed

Lines changed: 5 additions & 6 deletions

File tree

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ __pycache__/
3434

3535
# Distribution / packaging
3636
.Python
37-
reports/
3837
project/
3938
build/
4039
develop-eggs/

src/pydss/reports/__init__.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1+
from . import *
2+
# import pkgutil
13

2-
import pkgutil
34

5+
# __path__ = pkgutil.extend_path(__path__, __name__)
46

5-
__path__ = pkgutil.extend_path(__path__, __name__)
6-
7-
for _, modname, _ in pkgutil.walk_packages(path=__path__, prefix=__name__ + '.'):
8-
__import__(modname)
7+
# for _, modname, _ in pkgutil.walk_packages(path=__path__, prefix=__name__ + '.'):
8+
# __import__(modname)

0 commit comments

Comments
 (0)