Skip to content

Commit

Permalink
addendum refs #15900
Browse files Browse the repository at this point in the history
  • Loading branch information
namdre committed Dec 15, 2024
1 parent 6a238c0 commit d8720b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/routeSampler.py
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ def getIntervals(options):
# init departDist after begin and end are known, store in options for
# easier handover to solveInterval
options.departDist = None
if options.departDistVals:
if hasattr(options, "departDistVals") and options.departDistVals:
options.departDist = DepartDist(options.departDistVals, begin, end)

result = []
Expand Down

0 comments on commit d8720b1

Please sign in to comment.