Skip to content

Commit

Permalink
fix bug in finding difference in transit properties
Browse files Browse the repository at this point in the history
  • Loading branch information
yueshuaing committed Sep 18, 2024
1 parent f9ef6ae commit 390b96d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lasso/transit.py
Original file line number Diff line number Diff line change
Expand Up @@ -724,7 +724,7 @@ def evaluate_route_property_differences(
properties_base.pop(k, None)

difference_dict = dict(
set(properties_build.items()) ^ set(properties_base.items())
set(properties_build.items()) - set(properties_base.items())
)

# Iterate through properties list to build difference project card list
Expand Down

0 comments on commit 390b96d

Please sign in to comment.