Skip to content

Commit

Permalink
Update format for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
libpitt committed Dec 18, 2023
1 parent 7e617a9 commit 9038227
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ingest_validation_tools/check_factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
Row = Dict[str, Any]
Check = Callable[[Row], ErrorIterator]


def make_checks(schema) -> List[Check]:
factory = _CheckFactory(schema)
return [
Expand All @@ -25,7 +26,7 @@ def make_checks(schema) -> List[Check]:
]


class _CheckFactory():
class _CheckFactory:
def __init__(self, schema):
self.schema = schema
self._prev_value_run_length = {}
Expand Down

0 comments on commit 9038227

Please sign in to comment.