Skip to content

Commit f6a4e38

Browse files
black
1 parent c1ed937 commit f6a4e38

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

lfric_macros/apply_macros.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -389,10 +389,7 @@ def git_clone_temp(self, source, ref, repo):
389389
print(f"Extracting {source} to a temporary directory")
390390
tempdir = tempfile.mkdtemp()
391391
self.temp_dirs[repo] = tempdir
392-
commands = (
393-
f"git clone {source} {tempdir}",
394-
f"git -C {tempdir} checkout {ref}"
395-
)
392+
commands = (f"git clone {source} {tempdir}", f"git -C {tempdir} checkout {ref}")
396393
for command in commands:
397394
result = run_command(command)
398395
if result.returncode:

0 commit comments

Comments
 (0)