Using cbGetFieldContent without &wrapTpl

I have a Repeater that I’m pulling specific fields from, I don’t need a wrapping template around the field I’m grabbing but if I leave &wrapTpl off it renders the full Repeater wrapper (as expected), however, if I leave the value of &wrapTpl blank it also renders the full Repeater and various forms of @INLINE don’t help either.

Basically, I don’t want to have to create an empty chunk (product_list_price_wrap.tpl) just so &wrapTpl has an empty value. Is there a better way to do this?

[[cbGetFieldContent?
  &field=`33`
  &resource=`[[+id]]`
  &innerLimit=`1`
  &tpl=`product_list_price.tpl`
  &wrapTpl=`product_list_price_wrap.tpl`
]]

At the moment cbGetFieldContent doesn’t support inline templates, so for the wrapTpl you’ll need to define a chunk with just [[+rows]] in it.