Skip to content

Commit

Permalink
Unwrap date time objects (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewrlee authored Nov 27, 2024
1 parent b19e4cb commit 2e96364
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion github_discovery.py
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ def process_repo(**component):
data.update({'github_repo': repo.name})
data.update({'latest_commit': {
'sha': default_branch.commit.sha,
'date_time': default_branch.commit.commit.committer.date,
'date_time': default_branch.commit.commit.committer.date.isoformat(),
}})

# GitHub teams access, branch protection etc.
Expand Down

0 comments on commit 2e96364

Please sign in to comment.