We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1abe94b commit b905167Copy full SHA for b905167
arctic/chunkstore/date_chunker.py
@@ -50,7 +50,7 @@ def to_chunks(self, df, chunk_size):
50
raise Exception("Chunk size must be one of D, M, Y")
51
52
if 'date' not in df.index.names:
53
- raise Exception("Data must be datetime indexed and have an index colum named 'date'")
+ raise Exception("Data must be datetime indexed and have an index column named 'date'")
54
55
dates = [pd.to_datetime(d) for d in df.index.get_level_values('date').drop_duplicates()]
56
key_array = [self._get_date_chunk(d, chunk_size) for d in dates]
0 commit comments