instance="
{%- for name, value in config.items() -%}
  {%- if name != 'RAWSTRINGS' -%}
    {%- if value is string -%}
      {{ " --%s '%s'"|format(name, value) }}
    {%- elif value is sequence -%}
      {%- for item in value -%}
        {{ " --%s '%s'"|format(name, item) }}
      {%- endfor -%}
    {%- elif value is none or value == true -%}
      {{ " --%s"|format(name) }}
    {%- endif -%}
  {%- else -%}
  {%- endif -%}
{%- endfor -%}
"
{%- if config['RAWSTRINGS'] is defined -%}
  {%- for string in config['RAWSTRINGS'] %}
{{ string }}
  {%- endfor -%}
{%- endif -%}

