Skip to content

Commit

Permalink
fix: clean up print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
botanical committed Feb 14, 2025
1 parent fa9fb64 commit 899c88b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,6 @@ jobs:
echo "Publishing $collection_id"
response=$(python3 ./scripts/promote_collection.py "$file" "staging")
echo "Response: $response"
echo "Processed file: $file"
status_code=$(echo "$response" | jq -r '.statusCode')
echo "Status Code: $status_code"
Expand Down
1 change: 0 additions & 1 deletion scripts/promote_collection.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ def promote_to_production(payload):
)
response = http_conn.getresponse()
response_data = response.read()
print(f"Response: ${response_data}")
http_conn.close()

return {"statusCode": response.status, "body": response_data.decode()}
Expand Down

0 comments on commit 899c88b

Please sign in to comment.