Skip to content

Commit fe4fb5c

Browse files
committed
fixed Linter 2
1 parent a48efae commit fe4fb5c

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

tests/validation/tools/combine_reports.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,12 +105,18 @@ def parse_report(path: Path) -> Dict[Tuple[str, str], str]:
105105
else "UNKNOWN"
106106
)
107107

108-
results[(file_path, test_name)] = STATUS_LABELS.get(status_token, STATUS_LABELS["unknown"])
108+
results[(file_path, test_name)] = STATUS_LABELS.get(
109+
status_token, STATUS_LABELS["unknown"]
110+
)
111+
109112

110113
return results
111114

112115

113-
def build_dataframe(keys: Iterable[Tuple[str, str]], data: Dict[str, Dict[Tuple[str, str], str]]) -> pd.DataFrame:
116+
117+
def build_dataframe(
118+
keys: Iterable[Tuple[str, str]], data: Dict[str, Dict[Tuple[str, str], str]]
119+
) -> pd.DataFrame:
114120
ordered_tests = sorted(set(keys), key=lambda item: (item[0], item[1]))
115121
rows = []
116122
nic_columns = list(data.keys())

0 commit comments

Comments
 (0)