Fixed broken tests.

This commit is contained in:
Mark Wolfman
2021-06-12 15:37:10 -05:00
parent 6dcd20f877
commit 1abfcaf657
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -47,7 +47,7 @@ def read_sheet_file(filename: Union[str, Path]) -> dict:
char_props = {}
parent_sheets = these_props.pop('parent_sheets', [])
for parent_sheet in parent_sheets:
parent_sheet = Path(parent_sheet)
parent_sheet = (filename.parent / parent_sheet).resolve()
if parent_sheet != filename:
parent_props = read_sheet_file(parent_sheet)
char_props.update(parent_props)