MCPcopy Index your code
hub / github.com/apache/airflow / _write_args

Method _write_args

airflow/operators/python.py:395–398  ·  view source on GitHub ↗
(self, filename)

Source from the content-addressed store, hash-verified

393 return self._read_result(output_filename)
394
395 def _write_args(self, filename):
396 if self.op_args or self.op_kwargs:
397 with open(filename, 'wb') as file:
398 self.pickling_library.dump({'args': self.op_args, 'kwargs': self.op_kwargs}, file)
399
400 def _get_serializable_context_keys(self):
401 def _is_airflow_env():

Callers 1

execute_callableMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected