LangChain - LangGraph for Stateful Agents
Identify the error in this Langchain state schema definition:
class AppState:
def __init__(self):
self.count = 0
state = AppState()
print(state.counter)