()
| 157 | |
| 158 | |
| 159 | def print_summary(): |
| 160 | if len(Remapped_Vars): |
| 161 | out = [] |
| 162 | out.append(f'{Style.BRIGHT}{Fore.GREEN}{len(Remapped_Vars)} Renamed records:{Style.RESET_ALL}') |
| 163 | idx = 1 |
| 164 | for k, v in Remapped_Vars.items(): |
| 165 | out.append(f'{Style.BRIGHT}{Fore.GREEN}#{idx}{Style.RESET_ALL} : {k} -> {Style.BRIGHT}{Fore.GREEN}{v}{Style.RESET_ALL}') |
| 166 | idx = idx + 1 |
| 167 | |
| 168 | print(fancy_chain_print(out)) |
| 169 | |
| 170 | |
| 171 | def get_value(type, value): |
no test coverage detected