Skip to content

Commit 7668216

Browse files
[pre-commit.ci] Auto fixes from pre-commit.com hooks.
1 parent 48d55aa commit 7668216

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

games/baldursgate3/pak_parser.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,10 @@ def _get_metadata_for_file(
155155
)
156156
return ""
157157
parent_mod_name = file.parent.name.replace(" ", "_")
158-
pak_path = self._utils.overwrite_path / f"Mods/{parent_mod_name}_{file.name}.pak"
158+
pak_path = (
159+
self._utils.overwrite_path
160+
/ f"Mods/{parent_mod_name}_{file.name}.pak"
161+
)
159162
build_pak = True
160163
if pak_path.exists():
161164
pak_creation_time = os.path.getmtime(pak_path)

0 commit comments

Comments
 (0)