Skip to content

Commit

Permalink
addendum refs #16020
Browse files Browse the repository at this point in the history
  • Loading branch information
namdre committed Jan 16, 2025
1 parent 2aac24a commit 9a14982
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tools/output/vehrouteCountValidation.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,10 @@ def get_options(args=None):
and options.odFiles is None)):
sys.exit()

for attr in ["edgeDataAttr", "arrivalAttr", "departAttr", "turnAttr"]:
if getattr(options, attr) not in [None, "None"]:
setattr(options, attr, getattr(options, attr).split(","))

options.routeFiles = options.routeFiles.split(',')
options.turnFiles = options.turnFiles.split(',') if options.turnFiles is not None else []
options.turnRatioFiles = options.turnRatioFiles.split(',') if options.turnRatioFiles is not None else []
Expand Down

0 comments on commit 9a14982

Please sign in to comment.