Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Oct 3, 2024
1 parent 9bea6fb commit c5ce906
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/molecule_plugins/vagrant/modules/vagrant.py
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,9 @@ def _get_config(self):

def _write_vagrantfile(self):
instances = self._get_vagrant_config_dict()
j_env = jinja2.Environment(autoescape=True, trim_blocks=True, lstrip_blocks=True)
j_env = jinja2.Environment(
autoescape=True, trim_blocks=True, lstrip_blocks=True,
)
t = j_env.from_string(VAGRANTFILE_TEMPLATE)
template = t.render(
instances=instances,
Expand Down

0 comments on commit c5ce906

Please sign in to comment.