Skip to content

Commit

Permalink
Merge pull request #145 from NREL/fix_package_issue
Browse files Browse the repository at this point in the history
fixing packaging issue
  • Loading branch information
AadilLatif authored Mar 26, 2024
2 parents af59324 + 10f7079 commit 6ee4061
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ __pycache__/

# Distribution / packaging
.Python
reports/
project/
build/
develop-eggs/
Expand Down
10 changes: 5 additions & 5 deletions src/pydss/reports/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from . import *
# import pkgutil

import pkgutil

# __path__ = pkgutil.extend_path(__path__, __name__)

__path__ = pkgutil.extend_path(__path__, __name__)

for _, modname, _ in pkgutil.walk_packages(path=__path__, prefix=__name__ + '.'):
__import__(modname)
# for _, modname, _ in pkgutil.walk_packages(path=__path__, prefix=__name__ + '.'):
# __import__(modname)

0 comments on commit 6ee4061

Please sign in to comment.