Skip to content

Commit 320a00c

Browse files
authored
fix: re-order access_token param in Artifactory object
2 parents ecc51cf + 160873f commit 320a00c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

pyartifactory/objects/artifactory.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ def __init__(
2121
self,
2222
url: str,
2323
auth: Optional[Tuple[str, SecretStr]] = None,
24-
access_token: Optional[str] = None,
2524
verify: Union[bool, str] = True,
2625
cert: Optional[str] = None,
2726
api_version: int = 1,
2827
timeout: Optional[int] = None,
28+
access_token: Optional[str] = None,
2929
):
3030
self.artifactory = AuthModel(
3131
url=url,

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "PyArtifactory"
3-
version = "2.7.0"
3+
version = "2.7.1"
44
description = "Typed interactions with the Jfrog Artifactory REST API"
55
authors = [
66
"Ananias CARVALHO <carvalhoananias@hotmail.com>",

0 commit comments

Comments
 (0)