Tobias Locker
                                            Tobias Locker
                                        
                                    Hello @jaroslawmalekcodete Actually, the `if column < len(row) - 1:` is needed to avoid an `IndexError` when accessing `row[column + 1]` (the actual off by one problem) so the `else`...
Nope, it doesn't ```python from beakerx import * from beakerx.object import beakerx import pandas as pd s1 = pd.Series([0, 1, 2], index=pd.date_range('2000', freq='D', periods=3)) s2 = pd.Series([3, 4, 5], index=pd.date_range('2000',...
I found this behavior also irritating, forces me to add the following logic when I e.g. want to return 201 for a POST request ```python if request.method == 'OPTIONS': return...