Skip to content
Snippets Groups Projects
Verified Commit 298f2340 authored by Antoine Lambert's avatar Antoine Lambert
Browse files

converters: Fix mypy warnings with latest dulwich release

parent b80d2827
No related branches found
No related tags found
1 merge request!194Bunch of small fixes (fake8, mypy, tests)
......@@ -219,14 +219,14 @@ def dulwich_commit_to_revision(obj: ShaFile) -> Revision:
date=dulwich_tsinfo_to_timestamp(
commit.author_time,
commit.author_timezone,
commit._author_timezone_neg_utc,
bool(commit._author_timezone_neg_utc),
author_timezone,
),
committer=parse_author(commit.committer),
committer_date=dulwich_tsinfo_to_timestamp(
commit.commit_time,
commit.commit_timezone,
commit._commit_timezone_neg_utc,
bool(commit._commit_timezone_neg_utc),
committer_timezone,
),
type=RevisionType.GIT,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment