Skip to content

Commit

Permalink
cli/_state: fix pathlib error
Browse files Browse the repository at this point in the history
  • Loading branch information
Arun Persaud committed Oct 18, 2024
1 parent fbc726a commit 3760b73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pymcnp/cli/_state.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from typing import Final, Callable


DIR = Path.getcwd() / '.pymcnp/'
DIR = Path.cwd() / '.pymcnp/'


def init():
Expand Down

0 comments on commit 3760b73

Please sign in to comment.