Related to #3235.
With Rust v1.72, clippy began linting any panics that have missing panics documentation.
Some potential approaches to addressing the panics are: remove the panics and update them to return a RuntimeError/ImplementationError or add the documentation to the function that identified as panicking, or a combination of the two of those.
#3235 disables the lint, but the panics should be addressed and the lint reenables.
Related to #3235.
With Rust v1.72,
clippybegan linting any panics that have missingpanicsdocumentation.Some potential approaches to addressing the panics are: remove the panics and update them to return a
RuntimeError/ImplementationErroror add the documentation to the function that identified as panicking, or a combination of the two of those.#3235 disables the lint, but the panics should be addressed and the lint reenables.