()
| 83 | |
| 84 | |
| 85 | def pd_print_all(): |
| 86 | return pd.option_context( |
| 87 | "display.max_rows", |
| 88 | None, |
| 89 | "display.max_columns", |
| 90 | None, |
| 91 | "display.expand_frame_repr", |
| 92 | False, |
| 93 | ) |
| 94 | |
| 95 | |
| 96 | def format_large_int(number: int) -> str: |
no outgoing calls
no test coverage detected