Skip to content

Commit 473de51

Browse files
committed
linting
1 parent c499599 commit 473de51

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

env_config/load_profile.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ async def main():
1919
config_file = Path(__file__).parent / "config.toml"
2020
profile_name = "staging"
2121

22-
print("The 'staging' profile in config.toml has an incorrect address (localhost:9999).")
22+
print(
23+
"The 'staging' profile in config.toml has an incorrect address (localhost:9999)."
24+
)
2325
print("We'll programmatically override it to the correct address.")
2426

2527
# Load the 'staging' profile.
@@ -33,7 +35,9 @@ async def main():
3335
connect_config["target_host"] = "localhost:7233"
3436

3537
print(f"\nLoaded '{profile_name}' profile from {config_file} with overrides.")
36-
print(f" Address: {connect_config.get('target_host')} (overridden from localhost:9999)")
38+
print(
39+
f" Address: {connect_config.get('target_host')} (overridden from localhost:9999)"
40+
)
3741
print(f" Namespace: {connect_config.get('namespace')}")
3842

3943
print("\nAttempting to connect to client...")

0 commit comments

Comments
 (0)