Skip to content

Commit ec4364a

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent a465def commit ec4364a

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

powerplantmatching/matching.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,15 +84,19 @@ def _build_eic_index(df):
8484
return empty
8585

8686
matches = pd.DataFrame(
87-
{labels[0]: list(matched_0_to_1.keys()),
88-
labels[1]: list(matched_0_to_1.values())}
87+
{
88+
labels[0]: list(matched_0_to_1.keys()),
89+
labels[1]: list(matched_0_to_1.values()),
90+
}
8991
)
9092
matched_idx0 = set(matched_0_to_1)
9193
matched_idx1 = claimed_idx1
9294

9395
logger.info(
9496
"EIC matching: %d deterministic matches between `%s` and `%s`",
95-
len(matches), labels[0], labels[1],
97+
len(matches),
98+
labels[0],
99+
labels[1],
96100
)
97101

98102
return matches, matched_idx0, matched_idx1

0 commit comments

Comments
 (0)