We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0e6b68 commit a8ffe29Copy full SHA for a8ffe29
src/input/input_python.rs
@@ -68,7 +68,7 @@ fn check_if_ordered_dict(obj: &Bound<'_, PyAny>) -> bool {
68
}
69
70
if let Ok(type_name) = obj.get_type().name() {
71
- if type_name.to_string() != "OrderedDict" {
+ if type_name != "OrderedDict" {
72
return false;
73
74
0 commit comments