diff --git a/pyproject.toml b/pyproject.toml index 80098ca9..1477f28b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "readmeai" -version = "0.1.8" +version = "0.1.9" description = "🚀 Generate awesome README.md files from the terminal, powered by OpenAI's GPT language model APIs 💫" authors = ["Eli <0x.eli.64s@gmail.com>"] license = "MIT" diff --git a/readmeai/conf.py b/readmeai/conf.py index acb89d33..8071a577 100644 --- a/readmeai/conf.py +++ b/readmeai/conf.py @@ -214,7 +214,7 @@ def __post_init__(self): def _get_config_dict(handler: factory.FileHandler, path: str) -> dict: """Get configuration dictionary from TOML file.""" - path = Path("conf/").joinpath(path).resolve() + path = Path("conf/") / path return handler.read(path)