issues
search
aicers
/
review-web
A web interface to REview
Apache License 2.0
1
stars
2
forks
source link
Remove `unwrap`
#357
Open
dayeon5470
opened
6 days ago
dayeon5470
commented
6 days ago
Background
The development rules for our product say that we should use
expect
instead of
unwrap
in situations where we are confident that panic will not necessarily occur.
Task
Remove unwrap(), which is used against the rules
Background
expect
instead ofunwrap
in situations where we are confident that panic will not necessarily occur.Task