"""
A silly custom grammar just yielding one empty row for every source.

We want this here since we don't want to peek into most of the "products",
we just need them in tables for joining them to the main product.
"""

from gavo.grammars.customgrammar import CustomRowIterator

class RowIterator(CustomRowIterator):
	def _iterRows(self):
		yield {}
