Skip to content

Commit

Permalink
Fix unused config parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
reyery committed Feb 21, 2020
1 parent 01b94df commit ccc3157
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cea/datamanagement/create_new_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
def create_new_project(locator, config):
# Local variables
zone_geometry_path = config.create_new_project.zone
surroundings_geometry_path = config.create_new_project.district
surroundings_geometry_path = config.create_new_project.surroundings
street_geometry_path = config.create_new_project.streets
terrain_path = config.create_new_project.terrain
typology_path = config.create_new_project.typology
Expand Down Expand Up @@ -100,7 +100,7 @@ def main(config):
# print out all configuration variables used by this script
print("Running create-new-project with project = %s" % config.create_new_project.project)
print("Running create-new-project with scenario = %s" % config.create_new_project.scenario)
print("Running create-new-project with typology = %s" % config.create_new_project.occupancy)
print("Running create-new-project with typology = %s" % config.create_new_project.typology)
print("Running create-new-project with zone = %s" % config.create_new_project.zone)
print("Running create-new-project with terrain = %s" % config.create_new_project.terrain)
print("Running create-new-project with output-path = %s" % config.create_new_project.output_path)
Expand Down

0 comments on commit ccc3157

Please sign in to comment.