Skip to content

Commit

Permalink
fix: re-order access_token param in Artifactory object
Browse files Browse the repository at this point in the history
  • Loading branch information
anancarv authored Sep 23, 2024
2 parents ecc51cf + 160873f commit 320a00c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyartifactory/objects/artifactory.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ def __init__(
self,
url: str,
auth: Optional[Tuple[str, SecretStr]] = None,
access_token: Optional[str] = None,
verify: Union[bool, str] = True,
cert: Optional[str] = None,
api_version: int = 1,
timeout: Optional[int] = None,
access_token: Optional[str] = None,
):
self.artifactory = AuthModel(
url=url,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "PyArtifactory"
version = "2.7.0"
version = "2.7.1"
description = "Typed interactions with the Jfrog Artifactory REST API"
authors = [
"Ananias CARVALHO <[email protected]>",
Expand Down

0 comments on commit 320a00c

Please sign in to comment.