From e0307b5824f1729605affd8b88e60a65b858248e Mon Sep 17 00:00:00 2001 From: Gonchik Tsymzhitov Date: Sun, 20 Oct 2024 14:40:47 +0300 Subject: [PATCH] Remove unused imports --- atlassian/VERSION | 2 +- atlassian/bitbucket/__init__.py | 1 - atlassian/bitbucket/server/projects/repos/__init__.py | 3 ++- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/atlassian/VERSION b/atlassian/VERSION index 8604c7f3d..fbea48691 100644 --- a/atlassian/VERSION +++ b/atlassian/VERSION @@ -1 +1 @@ -3.41.16 +3.41.17 diff --git a/atlassian/bitbucket/__init__.py b/atlassian/bitbucket/__init__.py index 6d0eceaf9..bd963a3ce 100644 --- a/atlassian/bitbucket/__init__.py +++ b/atlassian/bitbucket/__init__.py @@ -1,7 +1,6 @@ # coding=utf-8 import logging from enum import Enum -from typing import Optional, Union from deprecated import deprecated from requests import HTTPError diff --git a/atlassian/bitbucket/server/projects/repos/__init__.py b/atlassian/bitbucket/server/projects/repos/__init__.py index a98aac301..af06ff7e7 100644 --- a/atlassian/bitbucket/server/projects/repos/__init__.py +++ b/atlassian/bitbucket/server/projects/repos/__init__.py @@ -301,7 +301,8 @@ def download_archive( For further information visit: https://docs.atlassian.com/bitbucket-server/rest/7.13.0/bitbucket-rest.html#idp199 :param dest_fd: a file-like object to which the archive will be written - :param at: string: Optional, the commit to download an archive of; if not supplied, an archive of the default branch is downloaded + :param at: string: Optional, the commit to download an archive of; if not supplied, + an archive of the default branch is downloaded :param filename: string: Optional, a filename to include the "Content-Disposition" header :param format: string: Optional, the format to stream the archive in; must be one of: zip, tar, tar.gz or tgz. If not specified, then the archive will be in zip format.