Skip to content

Commit

Permalink
Add follow_symlinks argument to ArtifactoryPath.is_dir (#440)
Browse files Browse the repository at this point in the history
* Add follow_symlinks argument to ArtifactoryPath.is_dir

* add follow_synlinks

---------

Co-authored-by: allburov <allburov@gmail.com>
  • Loading branch information
zhan9san and allburov authored Feb 10, 2024
1 parent 86ed353 commit c99d910
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion artifactory.py
Original file line number Diff line number Diff line change
Expand Up @@ -1887,7 +1887,7 @@ def creator(self):
"""
return self._accessor.creator(self)

def is_dir(self):
def is_dir(self, *, follow_symlinks=True):
"""
Whether this path is a directory.
"""
Expand Down

0 comments on commit c99d910

Please sign in to comment.