Skip to content

Commit

Permalink
remove now-deleted overwrite argument
Browse files Browse the repository at this point in the history
  • Loading branch information
Morilli committed Feb 5, 2025
1 parent 3942e43 commit 89e2cc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cdtb/patcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ def extract_file(self, file: PatcherFile, overwrite=False):
if not overwrite and self.is_extracted_file(file):
logger.debug(f"skip {file.name}: already extracted")
else:
self.release.storage.extract_file(file, self.extract_path(file), overwrite=overwrite)
self.release.storage.extract_file(file, self.extract_path(file))

def patch_version(self) -> Optional[PatchVersion]:
"""Return patch version or None if there is none
Expand Down

0 comments on commit 89e2cc7

Please sign in to comment.