Source code for uhugo.post_install.providers.netlify

from typing import Text

from . import ProviderBase


[docs] class Netlify(ProviderBase): """ Netlify provider """
[docs] def update_config_file(self, file_name: Text): """ Updates ``netlify.yaml`` file with Hugo's version :param file_name: Path of ``netlify.yaml`` :return: """ pass