Skip to content

Commit

Permalink
blah
Browse files Browse the repository at this point in the history
  • Loading branch information
rs239 committed Sep 17, 2022
1 parent 1a69299 commit 524ad6d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion schema/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
# https://julienharbulot.com/python-dynamical-import.html
# iterate through the modules in the current package
#
package_dir = pathlib.Path(__file__).resolve().parent
package_dir = str(pathlib.Path(__file__).resolve().parent)

for (_, module_name, _) in pkgutil.iter_modules([package_dir]):
if 'datasets' in module_name:
module = importlib.import_module(f"{__name__}.{module_name}")

0 comments on commit 524ad6d

Please sign in to comment.