Remove unwrap()
calls and Implement Proper Error Handling
#173
Labels
enhancement
New feature or request
unwrap()
calls and Implement Proper Error Handling
#173
There is an abundant presence of
unwrap()
calls in the codebase, which can lead to unexpected panics when errors occur. It is essential to replace these calls with proper error handling mechanisms to ensure robust and reliable software behavior.We already are using a library
anyhow
that can be useful with this.The text was updated successfully, but these errors were encountered: