Skip to content

Commit 2743e44

Browse files
committed
formatting
1 parent 1c8ac10 commit 2743e44

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

dsutil/docker.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,9 @@ def _clone_repos_helper(
281281
print('\n\n')
282282
repos_name = repos_name.strip('/').replace(PREFIX, 'docker-')
283283
repos_url = REPO.format(repos_name)
284-
run_cmd(['git', 'clone', '--depth=1', repos_url, path / repos_name], check=True)
284+
run_cmd(
285+
['git', 'clone', '--depth=1', repos_url, path / repos_name], check=True
286+
)
285287
dependencies.append(repos_name)
286288
if repos_url == repos_root:
287289
return

dsutil/url.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,3 @@ def format(url: str, text: str = '', type='html'):
1111
return f'<a href="{url}" target="_blank"> {text} </a>'
1212
if type == 'excel':
1313
return f'=HYPERLINK("{url}", "{text}")'
14-

0 commit comments

Comments
 (0)