Skip to content

Commit

Permalink
another fix of the condition...
Browse files Browse the repository at this point in the history
  • Loading branch information
martinfleis committed Feb 6, 2024
1 parent bfa9e7b commit 2bbe8c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shapely/set_operations.py
Expand Up @@ -542,7 +542,7 @@ def disjoint_subset_union(a, b, **kwargs):
<POLYGON ((0 0, 0 1, 1 1, 1 0, 0 0))>
"""
if (isinstance(a, Geometry) or a is None) and (
isinstance(b, Geometry) or a is None
isinstance(b, Geometry) or b is None
):
pass
elif isinstance(a, Geometry) or a is None:
Expand Down

0 comments on commit 2bbe8c6

Please sign in to comment.