Skip to content

Commit

Permalink
fix: revert test-if-statement
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgengaldal committed Sep 22, 2024
1 parent 5528459 commit cc17aa3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions algorithm/bridge/fetch_applicants_and_committees.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,9 @@ def main():
application_end = datetime.fromisoformat(period["applicationPeriod"]["end"].replace("Z", "+00:00"))

now = datetime.now(timezone.utc)


#or period["name"] == "Juli Opptak"
if period["name"] == "FAKE TEST OPPTAK!":
if (application_end < now and period["hasSentInterviewTimes"] == False):
applicants = fetch_applicants(periodId)
committee_times = fetch_committee_times(periodId)

Expand Down

0 comments on commit cc17aa3

Please sign in to comment.