File: Config.jinja2

package info (click to toggle)
python-datamodel-code-generator 0.26.4-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 712 kB
  • sloc: python: 9,525; makefile: 14
file content (4 lines) | stat: -rw-r--r-- 135 bytes parent folder | download
1
2
3
4
class Config:
{%- for field_name, value in config.dict(exclude_unset=True).items() %}
    {{ field_name }} = {{ value }}
{%- endfor %}