Skip to content

Commit c749289

Browse files
More reformatting linting python files
1 parent aea1e12 commit c749289

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

tasks/gcp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
from invoke.collection import Collection
44

55
from tasks.gcp.gke import create_gke, destroy_gke
6-
from tasks.gcp.vm import create_vm, destroy_vm
76
from tasks.gcp.openshift import create_openshift, destroy_openshift
7+
from tasks.gcp.vm import create_vm, destroy_vm
88

99
collection = Collection()
1010
collection.add_task(destroy_vm)

tasks/gcp/openshift.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def create_openshift(
5353
"ddinfra:gcp/defaultInstanceType": "n2-standard-8",
5454
}
5555

56-
full_stack_name = deploy(
56+
deploy(
5757
ctx,
5858
scenario_name,
5959
config_path,

tasks/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ def setup_gcp_config(config: Config):
334334
default_pull_secret_path = config.configParams.gcp.pullSecretPath
335335
while True:
336336
config.configParams.gcp.pullSecretPath = default_pull_secret_path
337-
pull_secret_path = ask(f"🔑 Path to your OpenShift pull secret file (optional, can be set later): ")
337+
pull_secret_path = ask("🔑 Path to your OpenShift pull secret file (optional, can be set later): ")
338338
if pull_secret_path:
339339
config.configParams.gcp.pullSecretPath = pull_secret_path
340340

0 commit comments

Comments
 (0)