SpiralRadius handling added for O-DU and NonRt-Ric
[oam.git] / code / network-generator / model / python / o_ran_object.py
index 0641afd..792cc30 100644 (file)
@@ -31,7 +31,7 @@ class IORanObject(ITop):
 # Define an abstract O-RAN Object class
 class ORanObject(Top, IORanObject):
     def __init__(self, of: IORanObject = None, **kwargs):
-        super().__init__(**kwargs)
+        super().__init__(of, **kwargs)
 
     def json(self) -> dict[str, Any]:
         result: dict[str, Any] = super().json()