Skip to content

Commit

Permalink
fix imr file format
Browse files Browse the repository at this point in the history
  • Loading branch information
Edgard Marx committed Apr 10, 2024
1 parent 3f2bceb commit d638931
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion imr/imr.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def rm(self, package: str, version: str = "latest") -> None:

def path(self, package: str, version: str = "latest") -> Path:
"""Return the path to the model."""
path :Path = self.repo / package
path: Path = self.repo / package
if version is not None:
path = self.repo / package / version
return path

0 comments on commit d638931

Please sign in to comment.