diff --git a/components/collector/src/source_collectors/bitbucket/inactive_branches.py b/components/collector/src/source_collectors/bitbucket/inactive_branches.py index 7fea7df829..57fca64837 100644 --- a/components/collector/src/source_collectors/bitbucket/inactive_branches.py +++ b/components/collector/src/source_collectors/bitbucket/inactive_branches.py @@ -53,9 +53,7 @@ async def _branches(self, responses: SourceResponses) -> list[BitbucketBranchTyp BitbucketBranchType( name=branch["displayId"], default=branch["isDefault"], - last_commit=datetime_from_timestamp( - branch["metadata"][metadata]["committerTimestamp"] - ), + last_commit=datetime_from_timestamp(branch["metadata"][metadata]["committerTimestamp"]), id=branch["id"], ) for branch in json["values"]