Skip to content

Commit f6c7bcb

Browse files
authored
Only lower if clean_key is instance of str
1 parent 6d8a4c7 commit f6c7bcb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deepdiff/diff.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ def _get_clean_to_keys_mapping(self, keys, level):
530530
clean_key = KEY_TO_VAL_STR.format(type_, clean_key)
531531
else:
532532
clean_key = key
533-
if self.ignore_string_case:
533+
if self.ignore_string_case and isinstance(clean_key, str):
534534
clean_key = clean_key.lower()
535535
if clean_key in result:
536536
logger.warning(('{} and {} in {} become the same key when ignore_numeric_type_changes'

0 commit comments

Comments
 (0)