Skip to content

Commit

Permalink
fix logic
Browse files Browse the repository at this point in the history
  • Loading branch information
arahlin committed Sep 7, 2023
1 parent fdf7227 commit e6d0104
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion maps/python/map_modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ def __init__(
if isinstance(map_ids, str):
map_ids = [map_ids]
self.map_ids = map_ids
if map_ids or len(map_ids) == 1:
if map_ids and len(map_ids) == 1:
collate = False
self.collate = collate
if self.collate:
Expand Down

0 comments on commit e6d0104

Please sign in to comment.