Skip to content

Commit

Permalink
Attempt to fix another CI build failure issue using black.
Browse files Browse the repository at this point in the history
  • Loading branch information
nepiskopos committed May 18, 2024
1 parent ba1478c commit c4f15c3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions py7zr/py7zr.py
Original file line number Diff line number Diff line change
Expand Up @@ -1003,8 +1003,9 @@ def read(self, targets: Optional[Collection[str]] = None) -> Optional[Dict[str,
self._dict = {}
return self._extract(path=None, targets=targets, return_dict=True)

def extract(self, path: Optional[Any] = None, targets: Optional[Collection[str]] = None,
recursive: Optional[bool] = False) -> None:
def extract(
self, path: Optional[Any] = None, targets: Optional[Collection[str]] = None, recursive: Optional[bool] = False
) -> None:
if not self._is_none_or_collection(targets):
raise TypeError("Wrong argument type given.")
self._extract(path, targets, return_dict=False, recursive=recursive)
Expand Down

0 comments on commit c4f15c3

Please sign in to comment.