(self, *args, **kwargs)
| 931 | implements_incr = False |
| 932 | |
| 933 | def __init__(self, *args, **kwargs): |
| 934 | if hasattr(self.key_t, '__func__'): # pragma: no cover |
| 935 | self.key_t = self.key_t.__func__ # remove binding |
| 936 | super().__init__(*args, **kwargs) |
| 937 | self._add_global_keyprefix() |
| 938 | self._encode_prefixes() |
| 939 | if self.implements_incr: |
| 940 | self.apply_chord = self._apply_chord_incr |
| 941 | |
| 942 | def _add_global_keyprefix(self): |
| 943 | """ |
nothing calls this directly
no test coverage detected