X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=code%2Fnetwork-generator%2Fmodel%2Fpython%2Fo_ran_cloud_du.py;h=617827ad3a9d89ee9618dea3391719a89b0ea7e3;hb=585e9202ce60916fc1269fccab4a8e21d6dffc4b;hp=953fca65021fcaf8a083b9b3d3c3039d3e8c7af0;hpb=7103d3f21271877939dd8c57df8c8c61d5b9f504;p=oam.git diff --git a/code/network-generator/model/python/o_ran_cloud_du.py b/code/network-generator/model/python/o_ran_cloud_du.py index 953fca6..617827a 100644 --- a/code/network-generator/model/python/o_ran_cloud_du.py +++ b/code/network-generator/model/python/o_ran_cloud_du.py @@ -73,14 +73,14 @@ class ORanCloudDu(ORanNode, IORanCloudDu): return self._towers def toKml(self) -> ET.Element: - o_ran__cloud_du: ET.Element = ET.Element("Folder") - open: ET.Element = ET.SubElement(o_ran__cloud_du, "open") + o_ran_cloud_du: ET.Element = ET.Element("Folder") + open: ET.Element = ET.SubElement(o_ran_cloud_du, "open") open.text = "1" - name: ET.Element = ET.SubElement(o_ran__cloud_du, "name") + name: ET.Element = ET.SubElement(o_ran_cloud_du, "name") name.text = self.name for tower in self.towers: - o_ran__cloud_du.append(tower.toKml()) - return o_ran__cloud_du + o_ran_cloud_du.append(tower.toKml()) + return o_ran_cloud_du def toSvg(self) -> None: return None