Skip to content

Commit 758f4ec

Browse files
committed
Fix remaining whitespace and style issues
1 parent 57dd8b5 commit 758f4ec

2 files changed

Lines changed: 2 additions & 5 deletions

File tree

conftest.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -78,11 +78,10 @@ def base_url(config):
7878
env = config["env"]
7979
if env not in config["environments"]:
8080
raise KeyError(f"Environment '{env}' not found in config")
81-
8281
url = config["environments"][env]["base_url"]
8382
if not url:
8483
raise ValueError(f"Base URL not configured for environment: {env}")
85-
84+
8685
return url
8786

8887

@@ -119,6 +118,3 @@ def attach_allure_logs(request):
119118
name="Failure Debug Info",
120119
attachment_type=allure.attachment_type.TEXT
121120
)
122-
123-
124-

validate_workflow.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ def validate_workflow():
5757
print(f"❌ Error: {e}")
5858
return False
5959

60+
6061
if __name__ == "__main__":
6162
success = validate_workflow()
6263
sys.exit(0 if success else 1)

0 commit comments

Comments
 (0)