MCPcopy Index your code
hub / github.com/pyinvoke/invoke / __init__

Method __init__

tests/task.py:563–565  ·  view source on GitHub ↗
(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

561
562 class MyCall(Call):
563 def __init__(self, *args, **kwargs):
564 self.hooray = kwargs.pop("hooray")
565 super().__init__(*args, **kwargs)
566
567 clone = orig.clone(into=MyCall, with_={"hooray": "woo"})
568 assert clone.hooray == "woo"

Callers

nothing calls this directly

Calls 1

popMethod · 0.45

Tested by

no test coverage detected