Skip to content

Commit

Permalink
[join-] fix putValue for merge rows absent in any source sheet
Browse files Browse the repository at this point in the history
  • Loading branch information
midichef authored and anjakefala committed Jan 4, 2025
1 parent aa63d5b commit 9c79eaf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion visidata/features/join.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,8 @@ def calcValue(self, row):

def putValue(self, row, value):
for vs, c in reversed(list(self.cols.items())):
c.setValue(row[vs], value)
if row[vs] is not None:
c.setValue(row[vs], value)

def isDiff(self, row, value):
col = list(self.cols.values())[0]
Expand Down

0 comments on commit 9c79eaf

Please sign in to comment.