### Describe the problem <!-- Describe the problem clearly here. --> I get `TypeError: unhashable type: 'slice'` when trying to set value(s) to `Series` using slice. ### Source code / logs <!-- Include any logs or source code that would be helpful to diagnose the problem. If including tracebacks, please include the full traceback. Large logs and files should be attached. Try to provide a reproducible test case that is the bare minimum necessary to generate the problem. --> ```python import modin.pandas as pd import pandas ps = pandas.Series([1,2,3]) ms = pd.Series([1,2,3]) ps[1:3] = 0 ps 0 1 1 0 2 0 dtype: int64 ms[1:3] = 0 TypeError: unhashable type: 'slice' ```