MCPcopy Create free account
hub / github.com/RefactoringGuru/design-patterns-python / __init__

Method __init__

src/Proxy/Conceptual/main.py:60–61  ·  view source on GitHub ↗
(self, real_subject: RealSubject)

Source from the content-addressed store, hash-verified

58 """
59
60 def __init__(self, real_subject: RealSubject) -> None:
61 self._real_subject = real_subject
62
63 def request(self) -> None:
64 """

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected