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

Method handle1

src/State/Conceptual/main.py:113–114  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

111
112class ConcreteStateB(State):
113 def handle1(self) -> None:
114 print("ConcreteStateB handles request1.")
115
116 def handle2(self) -> None:
117 print("ConcreteStateB handles request2.")

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected