Created
October 12, 2016 04:37
-
-
Save dwf/2279979ef4ddcd5ebd8db96f65569421 to your computer and use it in GitHub Desktop.
Example of interleaving data streams with Fuel and conditional processing with Blocks.
I met one problem while using this:
return super(IdentifierSource, self).sources + (self.id_source_name,)
TypeError: can only concatenate list (not "tuple") to list.
Do I need to change like:
return super(IdentifierSource, self).sources + [self.id_source_name, ]
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Great post. This would be great help.