swaps column order

This commit is contained in:
2025-11-20 22:20:45 -08:00
parent 3216f0faf6
commit d7afd31911
2 changed files with 10 additions and 10 deletions

View File

@@ -303,7 +303,7 @@ def main():
# List projects (all pages) with filter for projects updated in the last 7 days
from datetime import datetime, timedelta
seven_days_ago = (datetime.now() - timedelta(days=7)).strftime('%Y-%m-%d')
seven_days_ago = (datetime.now() - timedelta(days=14)).strftime('%Y-%m-%d')
projects = client.list_all_projects(latest_activity_since=seven_days_ago)
#projects = [p for p in projects if (p.get("projectId") or {}).get("native") == 15914808]