Method to normalize dictionary key access
(self, key: AnyStr)
| 72 | copy = __copy__ |
| 73 | |
| 74 | def normkey(self, key: AnyStr) -> AnyStr: |
| 75 | """Method to normalize dictionary key access""" |
| 76 | return key.lower() |
| 77 | |
| 78 | def normvalue(self, value: Any) -> Any: |
| 79 | """Method to normalize values prior to be set""" |
no outgoing calls
no test coverage detected