(self)
| 7 | |
| 8 | class Session: |
| 9 | def __init__(self): |
| 10 | self.id = str(uuid.uuid4()) |
| 11 | self.function_result: Optional[FunctionResult] = None |
| 12 | |
| 13 | def reset(self): |
| 14 | self.id = str(uuid.uuid4()) |
nothing calls this directly
no outgoing calls
no test coverage detected