Skip to content

Commit

Permalink
Fix bug in check for collate groups key (#907)
Browse files Browse the repository at this point in the history
  • Loading branch information
shaycrk authored Aug 9, 2022
1 parent 3ae02af commit f0a74a5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/triage/experiments/validate.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,10 @@


class Validator:
def __init__(self, db_engine=None, strict=True):
def __init__(self, db_engine=None, strict=True, entity_id_column="entity_id"):
self.db_engine = db_engine
self.strict = strict
self.entity_id_column = entity_id_column

def run(self, *args, **kwargs):
try:
Expand Down

0 comments on commit f0a74a5

Please sign in to comment.