Skip to content

Commit

Permalink
test: fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
efiop committed Nov 3, 2019
1 parent 71f8d25 commit 46391cb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/func/test_get_url.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ def test_get_url_from_non_local_path_to_dir_and_file(repo_dir, dst):

Repo.get_url(from_info.url, dst)

result_path = os.path.join(dst, file_name) if os.path.isdir(dst) else dst
result_path = (
os.path.join(dst, file_name) if os.path.isdir(dst) else dst
)

assert os.path.exists(result_path)
assert os.path.isfile(result_path)
Expand Down

0 comments on commit 46391cb

Please sign in to comment.