Skip to content

Commit

Permalink
update further
Browse files Browse the repository at this point in the history
  • Loading branch information
jandom committed Nov 14, 2023
1 parent 39cf6f2 commit 3583fc4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion gromacs/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,6 @@

from configparser import ConfigParser

from importlib import resources
from pathlib import Path

from . import utilities
Expand Down
5 changes: 2 additions & 3 deletions tests/datafiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,9 @@
"""


from importlib import resources
from pathlib import Path


def datafile(name):
with resources.path(__package__, Path("data") / name) as res_path:
return str(res_path)
path = Path(__package__) / "data" / name
return path.absolute()

0 comments on commit 3583fc4

Please sign in to comment.