Skip to content

Commit

Permalink
Add missing include
Browse files Browse the repository at this point in the history
  • Loading branch information
christophfroehlich committed Dec 10, 2024
1 parent 44fd3b4 commit 0667d74
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions make_help_scripts/create_pr_stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

import requests
import os
from datetime import datetime, timedelta
from datetime import datetime, timedelta, timezone
import time

def get_api_response(url):
Expand Down Expand Up @@ -696,7 +696,7 @@ def print_contributors_stats(contributors_stats):
blacklist = ["dependabot[bot]", "mergify[bot]"]

# Get the current date and time
current_date = datetime.now(datetime.timezone.utc)
current_date = datetime.now(timezone.utc)

# Calculate one year ago from the current date
one_year_ago = current_date - timedelta(days=365)
Expand Down

0 comments on commit 0667d74

Please sign in to comment.