Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelmckinsey1 committed Nov 12, 2024
1 parent 7f0cd31 commit 8445f2a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion thicket/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,9 @@ def _check_duplicate_inner_idx(df):
counts = Counter(inner_idx_values)
duplicates = [item for item, count in counts.items() if count > 1]
if len(duplicates) > 0:
raise DuplicateIndexError(f"Duplicate indices found in DataFrame index.\n\t{duplicates}")
raise DuplicateIndexError(
f"Duplicate indices found in DataFrame index.\n\t{duplicates}"
)

def _check_missing_hnid(df):
"""Check if there are missing hatchet nid's."""
Expand Down

0 comments on commit 8445f2a

Please sign in to comment.