Skip to content

Commit 06262e8

Browse files
committed
update comment
1 parent 1b886c4 commit 06262e8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/validators/literal.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ pub struct LiteralLookup<T: Debug> {
3636
// Catch all for unhashable types like list
3737
expected_py_values: Option<Vec<(Py<PyAny>, usize)>>,
3838
// Fallback for ints, bools, and strings to use Python hash and equality checks
39-
// which we can't mix with `expected_py_dict`, see tests/test_validators/test_literal.py::test_mix_int_enum_with_int
39+
// which we can't mix with `expected_py_dict`, as there may be conflicts
40+
// for an example, see tests/test_validators/test_literal.py::test_mix_int_enum_with_int
4041
expected_py_primitives: Option<Py<PyDict>>,
4142

4243
pub values: Vec<T>,

0 commit comments

Comments
 (0)