Skip to content

Commit

Permalink
Fix typos in append_to_uri_path docstring (mlflow#2226)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbczumar authored Jan 4, 2020
1 parent 40ef5af commit cb07e3b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mlflow/utils/uri.py
Original file line number Diff line number Diff line change
@@ -77,10 +77,10 @@ def append_to_uri_path(uri, *paths):
the path component of the specified `uri`.
>>> uri1 = "s3://root/base/path?param=value"
>>> uri1 = append_to_uri_path(uri, "some/subpath", "/anotherpath")
>>> uri1 = append_to_uri_path(uri1, "some/subpath", "/anotherpath")
>>> assert uri1 == "s3://root/base/path/some/subpath/anotherpath?param=value"
>>> uri2 = "a/posix/path"
>>> uri2 = append_to_uri_path(uri, "/some", "subpath")
>>> uri2 = append_to_uri_path(uri2, "/some", "subpath")
>>> assert uri2 == "a/posixpath/some/subpath"
"""
path = ""

0 comments on commit cb07e3b

Please sign in to comment.