Skip to content
This repository was archived by the owner on May 17, 2024. It is now read-only.

Commit d21b071

Browse files
authored
Merge pull request #183 from nklsw/fix-documentation
Fixed docstring in diff_tables() (Issue #182)
2 parents e357473 + 7bc2217 commit d21b071

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

data_diff/diff_tables.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -311,8 +311,8 @@ def diff_tables(self, table1: TableSegment, table2: TableSegment) -> DiffResult:
311311
312312
Returns:
313313
An iterator that yield pair-tuples, representing the diff. Items can be either
314-
('+', columns) for items in table1 but not in table2
315-
('-', columns) for items in table2 but not in table1
314+
('-', columns) for items in table1 but not in table2
315+
('+', columns) for items in table2 but not in table1
316316
Where `columns` is a tuple of values for the involved columns, i.e. (id, ...extra)
317317
"""
318318
# Validate options

0 commit comments

Comments
 (0)