Publishing 2019 R1 content
[platform/upstream/dldt.git] / model-optimizer / extensions / front / eltwise_n.py
index f1a42cb..7501e26 100644 (file)
@@ -1,5 +1,5 @@
 """
- Copyright (c) 2017-2018 Intel Corporation
+ Copyright (c) 2017-2019 Intel Corporation
 
  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
@@ -17,7 +17,7 @@
 import networkx as nx
 
 from mo.front.common.replacement import FrontReplacementOp
-from mo.graph.graph import Node
+from mo.graph.graph import Node, Graph
 from mo.ops.eltwise import Eltwise
 
 
@@ -29,7 +29,7 @@ class EltwiseNReplacement(FrontReplacementOp):
     op = 'EltwiseN'
     enabled = True
 
-    def replace_op(self, graph: nx.MultiDiGraph, node: Node):
+    def replace_op(self, graph: Graph, node: Node):
         out_node = node.in_node(0)
         operation = node.operation
         for ind in range(1, len(node.in_nodes())):