Skip to content

Commit

Permalink
style: rename TableGenerator to DetailedTableGenerator
Browse files Browse the repository at this point in the history
  • Loading branch information
candleindark committed Jan 17, 2025
1 parent a01339b commit 802ab57
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dandisets_linkml_status_tools/tools/md.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def validation_err_diff_table(
)


class TableGenerator(Protocol):
class DetailedTableGenerator(Protocol):
"""
Protocol of generators of tables for a specific category of validation errors
"""
Expand All @@ -167,7 +167,7 @@ def __call__(

def validation_err_diff_detailed_tables(
diff: dict[tuple, tuple[Counter[tuple], Counter[tuple]]],
table_gen_func: TableGenerator,
table_gen_func: DetailedTableGenerator,
) -> str:
"""
Generate a sequence of tables detailing the differences in two sets of validation
Expand Down

0 comments on commit 802ab57

Please sign in to comment.