Skip to content

Commit

Permalink
Merge branch 'fix_zip_python_3_9' into 'master'
Browse files Browse the repository at this point in the history
fix: strict in zip function

See merge request 3d/cars-park/cars!803
  • Loading branch information
dyoussef committed Jan 22, 2025
2 parents d8fea32 + c94c118 commit a610e47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cars/applications/dense_matching/dense_matching_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def get_margins(margin, disp_min, disp_max):
]
same_margins = [
max(left, right)
for left, right in zip(left_margins, right_margins, strict=True)
for left, right in zip(left_margins, right_margins) # noqa: B905
]

margins = xr.Dataset(
Expand Down

0 comments on commit a610e47

Please sign in to comment.