Skip to content

Commit

Permalink
Remove excess syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed May 16, 2024
1 parent 037a0f9 commit 3e038fd
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions jaraco/mongodb/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,7 @@ def _extract_application_zip(resp, target):
data = io.BytesIO(resp.read())
with zipfile.ZipFile(data) as obj:
roots = RootFinder.from_names(obj.namelist())
obj.extractall(
target,
)
obj.extractall(target)
return roots


Expand Down

0 comments on commit 3e038fd

Please sign in to comment.