Skip to content

Commit

Permalink
add load to init
Browse files Browse the repository at this point in the history
  • Loading branch information
Remi-Gau committed Feb 20, 2024
1 parent b8d6274 commit 595ff82
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,6 @@ nidmresults/_version.py

debug.log

test/data
test/data

.tox
6 changes: 5 additions & 1 deletion nidmresults/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
import os

from nidmresults.load import load

from nidmresults._version import __version__

latest_owlfile = os.path.join(
os.path.dirname(os.path.dirname(__file__)), 'nidmresults', 'owl',
"nidm-results_130.owl")
"nidm-results_130.owl")

__all__ = ["load"]
2 changes: 1 addition & 1 deletion nidmresults/load.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
""" Load and save NIDM-Results objects """
from .graph import NIDMResults
from nidmresults.graph import NIDMResults

import os

Expand Down

0 comments on commit 595ff82

Please sign in to comment.