commit 298f2340d74334ca6bed9e4c0eb1f8aab90f7c40 from: Antoine Lambert date: Wed Jan 8 12:04:58 2025 UTC converters: Fix mypy warnings with latest dulwich release commit - b80d2827bca52cb1808eeeb8046b15778bceff38 commit + 298f2340d74334ca6bed9e4c0eb1f8aab90f7c40 blob - 11ca1f4a17a6b505934de6507765cf4de40004b2 blob + f96bc1bdd28d3a993370cd683f080e6691ae0079 --- swh/loader/git/converters.py +++ swh/loader/git/converters.py @@ -219,14 +219,14 @@ def dulwich_commit_to_revision(obj: ShaFile) -> Revisi 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,