Skip to content

Commit

Permalink
update for test
Browse files Browse the repository at this point in the history
  • Loading branch information
kodflow committed Nov 23, 2023
1 parent 998599c commit 3aa669c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion source/jormungandr/jormungandr/street_network/andyamo.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,10 @@ def __init__(
self.sn_system_id = id
self.token = token
self.zone = zone
self.polygon_zone = Polygon(zone)
self.polygon_zone = None
if zone != "":
self.polygon_zone = Polygon(zone)

if not service_backup:
raise ValueError('service_backup {} is not define cant forward to asgard'.format(service_backup))

Expand Down

0 comments on commit 3aa669c

Please sign in to comment.