Skip to content

Commit

Permalink
fix: fix create local repository
Browse files Browse the repository at this point in the history
  • Loading branch information
anancarv committed Oct 20, 2023
1 parent 8236326 commit d15bfd9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -127,3 +127,6 @@ dmypy.json

# vscode
.vscode/

# ruff
.ruff_cache
2 changes: 1 addition & 1 deletion pyartifactory/objects/repository.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def get_repo(self, repo_name: str) -> AnyRepositoryResponse:
raise ArtifactoryError from error

@overload
def create_repo(self, repo: LocalRepositoryResponse) -> LocalRepositoryResponse:
def create_repo(self, repo: LocalRepository) -> LocalRepositoryResponse:
...

@overload
Expand Down

0 comments on commit d15bfd9

Please sign in to comment.