USEPA / ElectricityLCI

Creative Commons Zero v1.0 Universal
24 stars 10 forks source link

Move model vars from globals to model_config #44

Closed WesIngwersen closed 5 years ago

WesIngwersen commented 5 years ago

Importing model specific variables did not seems appropriate the globals file. Now with moving all the loaded model specific variables to the model_config.py, the import statements make it more clear that a varaible is model-specific

eg before: from electricitylci.globals import fuel_name

now: from electricitylci.model_config import fuel_name

Shows that fuel_name is actually model specific, and not 'global'