Remove some dead code from the base load_data method

Was causing an odd error which threw off the error detection code
when the datastructure was a string corresponding to a variable.
This commit is contained in:
James Cammarata 2015-07-16 15:09:22 -04:00
parent d977dd507c
commit 86a83c16b8

View file

@ -154,8 +154,11 @@ class Base:
else:
self._loader = DataLoader()
if isinstance(ds, string_types) or isinstance(ds, FileIO):
ds = self._loader.load(ds)
# FIXME: is this required anymore? This doesn't seem to do anything
# helpful, and was added in very early stages of the base class
# development.
#if isinstance(ds, string_types) or isinstance(ds, FileIO):
# ds = self._loader.load(ds)
# call the preprocess_data() function to massage the data into
# something we can more easily parse, and then call the validation