Skip to content

Commit

Permalink
Commented out part of GUI restricting certain land use scenarios to c…
Browse files Browse the repository at this point in the history
…ertain years
  • Loading branch information
JoeJimFlood committed May 17, 2024
1 parent b0846c8 commit eb343c4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main/python/pythonGUI/createStudyAndScenario.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,11 @@ def __init__(self, root, emme_version = "4.3.7", year = "2016", geo = "1", lu =
self.geo = geo
self.lu = lu

if self.year not in self.lu_options[self.lu]["years"]:
if self.year in self.lu_options["DS41"]["years"]:
self.lu = "DS41"
else:
self.lu = "DS42"
# if self.year not in self.lu_options[self.lu]["years"]:
# if self.year in self.lu_options["DS41"]["years"]:
# self.lu = "DS41"
# else:
# self.lu = "DS42"

yearOptionList = []
for lu in self.lu_options:
Expand Down

0 comments on commit eb343c4

Please sign in to comment.