Skip to content

Commit f5c57b3

Browse files
committed
doc(netop): comment about __cal__/compute TODO refact
1 parent f8bc8b6 commit f5c57b3

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

graphtik/netop.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,8 @@ def compute(self, named_inputs, outputs=None) -> dict:
8080
except Exception as ex:
8181
jetsam(ex, locals(), "plan", "solution", "outputs", network="net")
8282

83-
def __call__(
84-
self, named_inputs, outputs=None, method=None, overwrites_collector=None
85-
) -> dict:
83+
# TODO: def __call__(self, **kwargs) -> tuple:
84+
def __call__(self, named_inputs, outputs=None) -> dict:
8685
return self.compute(named_inputs, outputs=outputs)
8786

8887
def set_execution_method(self, method):

0 commit comments

Comments
 (0)