Skip to content

Commit

Permalink
Fix lint error.
Browse files Browse the repository at this point in the history
  • Loading branch information
tardis4500 committed Feb 14, 2025
1 parent 6430615 commit 668ed4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion batcave/fileutil.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def pack(archive_file: PathName, items: Iterable, /, item_location: Optional[Pat
else:
tar_name = archive

pkg_file = tar_open(tar_name, mode='w:' + compression) # pylint: disable=consider-using-with
pkg_file = tar_open(tar_name, mode='w:' + compression) # type: ignore[call-overload] # pylint: disable=consider-using-with
adder = 'add'

added = False
Expand Down

0 comments on commit 668ed4b

Please sign in to comment.