Skip to content

Commit

Permalink
black fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Eldies committed Feb 11, 2025
1 parent 75caa51 commit ff14f8a
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tests/python/rest_api/test_projects.py
Original file line number Diff line number Diff line change
Expand Up @@ -1145,10 +1145,7 @@ def test_export_project_with_honeypots(self, admin_user: str):
admin_user, api_version=2, save_images=True, id=project.id, format="COCO 1.0"
)

image_names = [
image_name.split("jpeg")[0] + "jpg"
for image_name in image_names
]
image_names = [image_name.split("jpeg")[0] + "jpg" for image_name in image_names]
with zipfile.ZipFile(io.BytesIO(dataset)) as zip_file:
subset_path = "images/default"
assert (
Expand Down

0 comments on commit ff14f8a

Please sign in to comment.