You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently gst_aggregator.py and gst_base_transform.py have a lot of duplicate code, due to lack of multiple inheritance in Python.
Solution is to use aggregation - create helper class that manages models and various properties, and use this helper class in
both base classes.
The text was updated successfully, but these errors were encountered:
Currently
gst_aggregator.py
andgst_base_transform.py
have a lot of duplicate code, due to lack of multiple inheritance in Python.Solution is to use aggregation - create helper class that manages models and various properties, and use this helper class in
both base classes.
The text was updated successfully, but these errors were encountered: