Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
JONEMI21 committed Feb 3, 2025
1 parent e45c8cf commit fe6851c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/input/return_enums.rs
Original file line number Diff line number Diff line change
Expand Up @@ -200,9 +200,9 @@ fn validate_hashable<'py>(
state: &mut ValidationState<'_, 'py>,
validator: &CombinedValidator,
) -> ValResult<PyObject> {
let result:PyObject = validator.validate(py, item, state)?;
let result: PyObject = validator.validate(py, item, state)?;

let bound_result= result.bind(py);
let bound_result: &Bound<'_, PyAny> = result.bind(py);

match bound_result.hash() {
Ok(_) => Ok(result),
Expand Down

0 comments on commit fe6851c

Please sign in to comment.