Skip to content
This repository was archived by the owner on May 17, 2024. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions data_diff/diff_tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,8 +311,8 @@ def diff_tables(self, table1: TableSegment, table2: TableSegment) -> DiffResult:

Returns:
An iterator that yield pair-tuples, representing the diff. Items can be either
('+', columns) for items in table1 but not in table2
('-', columns) for items in table2 but not in table1
('-', columns) for items in table1 but not in table2
('+', columns) for items in table2 but not in table1
Where `columns` is a tuple of values for the involved columns, i.e. (id, ...extra)
"""
# Validate options
Expand Down