d6t / d6tflow

Python library for building highly effective data science workflows
https://d6tflow.readthedocs.io/en/latest/
MIT License
951 stars 77 forks source link

object has no attribute 'loadInputs' #13

Closed adriantre closed 4 years ago

adriantre commented 5 years ago

Hi! Just started trying out d6tflow.

I seem to have run into a problem: When running:

`class TaskCombineData(d6tflow.tasks.TaskPqPandas):

def requires(self):
    return TaskGetData1(), TaskGetData2()

def run(self):
    df_data1, df_data2 = self.loadInputs()
    data = pd.concat([df_likes, df_dislikes])
    self.save(data)`

I get the following error: 'TaskCombineData' object has no attribute 'loadInputs'

Have I misunderstood the usage mentioned here?

d6tcollect==1.0.5 d6tflow==0.1.5

d6tdev commented 4 years ago

This for pointing this out, updated the docs