Skip to content

Commit 3aa2a1f

Browse files
run black
1 parent a3f4fec commit 3aa2a1f

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

suite_report_git/suite_data.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
import shutil
1717
import yaml
1818
import re
19+
1920
try:
2021
from bdiff.git_bdiff import GitBDiff, GitInfo
2122
except ImportError:
@@ -104,7 +105,9 @@ def clone_sources(self):
104105
source = data["source"]
105106
if not source.endswith("/"):
106107
source = source + "/"
107-
command = f'rsync -e "ssh -o StrictHostKeyChecking=no" -avl {source} {loc}'
108+
command = (
109+
f'rsync -e "ssh -o StrictHostKeyChecking=no" -avl {source} {loc}'
110+
)
108111
self.run_command(command, shell=True)
109112

110113
def determine_primary_source(self) -> str:

0 commit comments

Comments
 (0)