sync/index.py [185:193]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
               key: IndexKey,
               value: IndexValue,
               ) -> Index:
        if len(key) != len(self.key_fields):
            raise ValueError

        assert all(isinstance(item, str) for item in key)

        value = self.dump_value(value)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



sync/index.py [204:212]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
               key: IndexKey,
               value: IndexValue,
               ) -> Index:
        if len(key) != len(self.key_fields):
            raise ValueError

        assert all(isinstance(item, str) for item in key)

        value = self.dump_value(value)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



