(self, master, **cfg)
| 2083 | class HelpFrame(LabelFrame): |
| 2084 | |
| 2085 | def __init__(self, master, **cfg): |
| 2086 | super().__init__(master, **cfg) |
| 2087 | self.create_frame_help() |
| 2088 | self.load_helplist() |
| 2089 | |
| 2090 | def create_frame_help(self): |
| 2091 | """Create LabelFrame for additional help menu sources. |
nothing calls this directly
no test coverage detected