fix: made sure to get basename rather than file stem

This commit is contained in:
2026-01-14 18:25:47 -05:00
parent 88aab2b418
commit 83af21eec8

View File

@@ -21,7 +21,7 @@ class Config:
parent_dir = self.__controller.get_scope(scope, index)
filepath = Path(parent_dir) / filepath
filename: str = filepath.stem
filename: str = filepath.name
self.parse_method = "YML"
if "." in filename: