()
| 120 | |
| 121 | @staticmethod |
| 122 | def current(): |
| 123 | ctxid = context_helper.get_context_data("agent_context_id", "") |
| 124 | if not ctxid: |
| 125 | return None |
| 126 | return AgentContext.get(ctxid) |
| 127 | |
| 128 | @staticmethod |
| 129 | def set_current(ctxid: str): |
no test coverage detected