easyhelp wanted
Metriche repository
- Star
- (10 star)
- Metriche merge PR
- (Metriche PR in attesa)
Descrizione
In #816 all IC symbols were gathered in the same file and collected into a dictionary. This dictionary is useful to make all the symbols available to the code that reads config files. However, the method used to collect them into the dictionary is not the best. As suggested here The main alternatives are:
- A class decorator that adds every variant of the decorated enum to the dictionary
- Metaclasses
1 is the most straightforward, but both options should be explored and compared to see which one fits best.