MCPcopy
hub / github.com/mitmproxy/mitmproxy / QuickHelp

Class QuickHelp

mitmproxy/tools/console/quickhelp.py:40–49  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

38
39@dataclass
40class QuickHelp:
41 top_label: str
42 top_items: HelpItems
43 bottom_label: str
44 bottom_items: HelpItems
45
46 def make_rows(self, keymap: Keymap) -> tuple[urwid.Columns, urwid.Columns]:
47 top = _make_row(self.top_label, self.top_items, keymap)
48 bottom = _make_row(self.bottom_label, self.bottom_items, keymap)
49 return top, bottom
50
51
52def make(

Callers 1

makeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…