Skip to content

Commit

Permalink
Add forgotten columncomparator file
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Westphal committed Jul 31, 2024
1 parent 8bdf2ae commit 0660dcd
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions util/columncomparator.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from typing import List

from semanticlabeling.labeledcolumn import LabeledColumn


class UncomparableException(Exception):
"""Thrown when two labeled columns of uncomparable type are being compared"""


def get_closest(compare_column: LabeledColumn, other_columns: List[LabeledColumn]) -> LabeledColumn:
raise NotImplementedError()

0 comments on commit 0660dcd

Please sign in to comment.