<%inherit file="/class.tmpl"/> <%block name="synopsis"> from gi.repository import ${namespace.name} ${formatter.to_underscores(node.name).lower()} = ${namespace.name}.${node.name}(\ % for ix, property_ in enumerate(node.properties): % if property_.construct or property_.construct_only or property_.writable: ${property_.name.replace('-', '_')}=value\ % if ix != len(node.properties) - 1: , \ % endif % endif % endfor )\