Loading src/service/service/service_handlers/l3nm_ietfactn/L3NM_IETFACTN_ServiceHandler.py +1 −2 Original line number Diff line number Diff line Loading @@ -119,8 +119,7 @@ class L3NM_IETFACTN_ServiceHandler(_ServiceHandler): self, src_vlan_tag : int, dst_vlan_tag : int ) -> Tuple[List[Dict], List[Dict]]: static_routing = self.__settings_handler.get('/static_routing') if static_routing is None: raise Exception('static_routing not found') static_routing_dict : Dict = static_routing.value static_routing_dict : Dict = dict() if static_routing is None else static_routing.value src_static_routes = list() dst_static_routes = list() for _, static_route in static_routing_dict.items(): Loading Loading
src/service/service/service_handlers/l3nm_ietfactn/L3NM_IETFACTN_ServiceHandler.py +1 −2 Original line number Diff line number Diff line Loading @@ -119,8 +119,7 @@ class L3NM_IETFACTN_ServiceHandler(_ServiceHandler): self, src_vlan_tag : int, dst_vlan_tag : int ) -> Tuple[List[Dict], List[Dict]]: static_routing = self.__settings_handler.get('/static_routing') if static_routing is None: raise Exception('static_routing not found') static_routing_dict : Dict = static_routing.value static_routing_dict : Dict = dict() if static_routing is None else static_routing.value src_static_routes = list() dst_static_routes = list() for _, static_route in static_routing_dict.items(): Loading