EIT-ALIVE / eitprocessing

Software for electrical impedance tomography data loading, visualization and processing
https://eit-alive.github.io/eitprocessing/
Apache License 2.0
5 stars 1 forks source link

Allow class as key in parameters dict #319

Open psomhorst opened 1 month ago

psomhorst commented 1 month ago

The parameters argument dictionary in DataContainer objects have the type dict[str, Any]. However, it makes sense to not use the name of a class as key, but the class itself. The type dict[str | type, Any] makes more sense.