Skip to content

Commit bfbdb86

Browse files
committed
feat: load config from twyn.toml if it exists
1 parent 138eaea commit bfbdb86

2 files changed

Lines changed: 1 addition & 1 deletion

File tree

src/twyn/file_handler/file_handler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,4 @@ def delete(self, delete_parent_dir: bool = False) -> None:
6565
)
6666

6767
def _get_file_path(self, file_path: str) -> Path:
68-
return (Path(os.getcwd()) / Path(file_path)).resolve()
68+
return Path(os.path.abspath(os.path.join(os.getcwd(), file_path)))

twyn.toml

Whitespace-only changes.

0 commit comments

Comments
 (0)