Skip to content

Commit f4ae32d

Browse files
Natasha ChetwyndNatasha Chetwynd
authored andcommitted
corrected missing bracket line 88
1 parent d06e691 commit f4ae32d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

codonPython/checknatval.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,5 +85,5 @@ def check_nat_val(df: pd.DataFrame, breakdown_col: str = "Breakdown",
8585
left = value_col + '_x'
8686
right = value_col + '_y'
8787
join['Check'] = join[right] <= join[left]
88-
result = all(join['Check']
88+
result = all(join['Check'])
8989
return result

0 commit comments

Comments
 (0)