From 26f450e57ea308b7f514a99ad29bbf562e31a819 Mon Sep 17 00:00:00 2001 From: Gonchik Tsymzhitov Date: Sat, 3 Feb 2024 15:31:03 +0200 Subject: [PATCH] Prepare a new release --- atlassian/VERSION | 2 +- atlassian/bitbucket/cloud/repositories/commits.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/atlassian/VERSION b/atlassian/VERSION index 1b36d3211..6af851bae 100644 --- a/atlassian/VERSION +++ b/atlassian/VERSION @@ -1 +1 @@ -3.41.9 +3.41.10 diff --git a/atlassian/bitbucket/cloud/repositories/commits.py b/atlassian/bitbucket/cloud/repositories/commits.py index 947a5ef22..8a69c2336 100644 --- a/atlassian/bitbucket/cloud/repositories/commits.py +++ b/atlassian/bitbucket/cloud/repositories/commits.py @@ -34,9 +34,9 @@ def each(self, top=None, q=None, sort=None): params["sort"] = sort if q is not None: params["q"] = q - trailing=True + trailing = True if top is not None: - trailing=False + trailing = False for commit in self._get_paged(top, trailing=trailing, params=params): yield self.__get_object(commit)