Проверка шаблона шины для iOS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
390B

  1. def generateStructure(structure):
  2. output = f"""// ВНИМАНИЕ Сгенерировано автоматом из файла {structure.src.name}.yml
  3. // ВНИМАНИЕ Не менять руками!
  4. """
  5. output += structure.orig
  6. for key in structure.replace.items:
  7. value = structure.replace.items[key]
  8. output = output.replace(key, value)
  9. return output