Example #1
0
 def __str__(self) -> str:
     return get_dag_node_str(self, "__InputNode__")
Example #2
0
 def __str__(self) -> str:
     return get_dag_node_str(self, f'["{self._key}"]')
Example #3
0
 def __str__(self) -> str:
     return get_dag_node_str(self, str(self._deployment))
Example #4
0
 def __str__(self) -> str:
     return get_dag_node_str(self, str(self._body))
Example #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)}")
Example #8
0
 def __str__(self) -> str:
     return get_dag_node_str(self, str(self._deployment_function_handle))