configuration.py 233 B

12345
  1. from typing import Union
  2. # This is a dirty hack - proper way it to upgrade OpenAPI generator for at least 5.0
  3. # But this upgrade will also require updating of all templates. Maybe some other day
  4. AnyOfstringinteger = Union[str, int]