You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
That encourages coders to think they can change process_data in the function, but they can't, as this function is not always called.
ProcessDataTask.process() function is the correct place to add things to process_data, but that means there needs to be some more complexity when it's used - and TaskWithState was designed to be easier to use.
So far no users of this class do do this.
The text was updated successfully, but these errors were encountered:
That encourages coders to think they can change
process_data
in the function, but they can't, as this function is not always called.ProcessDataTask.process()
function is the correct place to add things toprocess_data
, but that means there needs to be some more complexity when it's used - andTaskWithState
was designed to be easier to use.So far no users of this class do do this.
The text was updated successfully, but these errors were encountered: