Skip to content

Commit a052ec5

Browse files
committed
fix: python issues
Signed-off-by: Chris Butler <chris.butler@redhat.com>
1 parent 5226d7a commit a052ec5

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

rhdp/rhdp-cluster-define.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@ def setup_install(
4949
pull_secret = pull_secret_path.expanduser().read_text()
5050
rhdp_dir = pattern_dir / "rhdp"
5151
jinja_env = Environment(
52-
loader=FileSystemLoader(searchpath=rhdp_dir), autoescape=select_autoescape()
52+
loader=FileSystemLoader(searchpath=rhdp_dir),
53+
autoescape=select_autoescape()
5354
)
5455
config_template = jinja_env.get_template("install-config.yaml.j2")
5556
output_text = config_template.render(
@@ -86,7 +87,8 @@ def print():
8687

8788
def run(region: Annotated[str, typer.Argument(help="Azure region code")]):
8889
"""
89-
Region flag requires an azure region key which can be (authoritatively) requested with: "az account list-locations -o table".
90+
Region flag requires an azure region key which can be (authoritatively)
91+
requested with: "az account list-locations -o table".
9092
"""
9193
validate_dir()
9294
cleanup(pathlib.Path.cwd())

0 commit comments

Comments
 (0)