blogposts

The One File That Made My Forecasting System Maintainable

2 minute read

Published:

My first Python project had magic numbers everywhere. alpha=2.0 here, alpha=0.15 there… When I needed to change something, it was a nightmare. I had to find where the parameters are located. Sometimes I lost track of them and found inconsistency across the scripts which resulted in breaking the scripts. What changed everything was moving all my parameters into a single config.py file.