Beispiel #1
0
 def __str__(self) -> str:
     return get_dag_node_str(self, "__InputNode__")
Beispiel #2
0
 def __str__(self) -> str:
     return get_dag_node_str(self, f'["{self._key}"]')
Beispiel #3
0
 def __str__(self) -> str:
     return get_dag_node_str(self, str(self._deployment))
Beispiel #4
0
 def __str__(self) -> str:
     return get_dag_node_str(self, str(self._body))
Beispiel #5
0
 def __str__(self) -> str:
     return get_dag_node_str(self, f"{self._method_name}()")
 def __str__(self) -> str:
     return get_dag_node_str(
         self,
         str(self._deployment_method_name) + "() @ " +
         str(self._deployment),
     )
 def __str__(self) -> str:
     return get_dag_node_str(self,
                             f"Preprocessor: {str(self._preprocessor)}")
Beispiel #8
0
 def __str__(self) -> str:
     return get_dag_node_str(self, str(self._deployment_function_handle))