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