Remove formatting for all handlers bound to the root logger for the library.
()
| 204 | |
| 205 | |
| 206 | def unset_formatting() -> None: |
| 207 | """ |
| 208 | Remove formatting for all handlers bound to the root logger for the library. |
| 209 | """ |
| 210 | for handler in _get_library_root_logger().handlers: |
| 211 | handler.setFormatter(None) |
| 212 | |
| 213 | |
| 214 | @lru_cache(None) |
nothing calls this directly
no test coverage detected