Removed jquery from a few simple javascript files

This commit is contained in:
Alex Janousek
2025-10-20 18:44:33 -04:00
parent 43c076e504
commit c53c9f5c91
10 changed files with 160 additions and 360 deletions

View File

@@ -153,7 +153,9 @@ def _cleanup_test_service(page: Page, service_name: str):
print(f"Successfully cleaned up test service: {service_name}") # noqa: T201
else:
print(f"Service '{service_name}' not found, may have been deleted already") # noqa: T201
print( # noqa: T201
f"Service '{service_name}' not found, may have been deleted already"
)
except Exception as e:
raise Exception(f"Failed to cleanup service '{service_name}': {str(e)}")