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:
parent
d977dd507c
commit
86a83c16b8
1 changed files with 5 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue