Assembe.py was crashing when executing. Fixed the issue by changing the value of index_col=False to index_col=None when reading into pandas.
Like this:
data = pd.read_csv(os.path.join(settings.DATA_DIR, f), sep="|", header=None, names=HEADERS[pref
ix], index_col=None)
Assembe.py was crashing when executing. Fixed the issue by changing the value of index_col=False to index_col=None when reading into pandas.
Like this:
data = pd.read_csv(os.path.join(settings.DATA_DIR, f), sep="|", header=None, names=HEADERS[pref
ix], index_col=None)