(chan: CChan, figure_config)
| 147 | |
| 148 | |
| 149 | def GetPlotMeta(chan: CChan, figure_config) -> List[CChanPlotMeta]: |
| 150 | plot_metas = [CChanPlotMeta(chan[kl_type]) for kl_type in chan.lv_list] |
| 151 | if figure_config.get("only_top_lv", False): |
| 152 | plot_metas = [plot_metas[0]] |
| 153 | return plot_metas |
| 154 | |
| 155 | |
| 156 | class CPlotDriver: |
no test coverage detected