Skip to content

Commit 99b93db

Browse files
committed
Black formatting
1 parent 9137659 commit 99b93db

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/cleanvision/issue_managers/duplicate_issue_manager.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,9 @@ def _update_issues(self) -> None:
184184
for issue_type in self.issue_types:
185185
score_col = get_score_colname(issue_type)
186186
for s in self.info[issue_type][SETS]:
187-
score = 1.0 / len(s) # will never be 0 because all images in this set are duplicated
187+
score = 1.0 / len(
188+
s
189+
) # will never be 0 because all images in this set are duplicated
188190
score_df.loc[s, score_col] = score
189191

190192
self.issues = self.issues.join(score_df[[score_col]])

0 commit comments

Comments
 (0)