Skip to content

Commit

Permalink
Update dpkg versions list
Browse files Browse the repository at this point in the history
From the artifact of the previous workflow run
  • Loading branch information
geo-ghci-int[bot] committed Dec 2, 2024
1 parent 7c489cd commit fed0754
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions c2c/template/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -392,12 +392,16 @@ def set_path(item: tuple[dict[str, Any], str], value: str) -> None:

def _proceed(files: list[tuple[str, str]], used_vars: dict[str, Any], options: Namespace) -> None:
if options.engine == "jinja":
from bottle import jinja2_template as engine # type: ignore # pylint: disable=import-outside-toplevel
from bottle import (
jinja2_template as engine, # type: ignore # pylint: disable=import-outside-toplevel
)

bottle_template(files, used_vars, engine)

elif options.engine == "mako":
from bottle import mako_template as engine # pylint: disable=import-outside-toplevel
from bottle import (
mako_template as engine, # pylint: disable=import-outside-toplevel
)

bottle_template(files, used_vars, engine)

Expand Down

0 comments on commit fed0754

Please sign in to comment.