Skip to content

Commit e8b4a63

Browse files
George RobertsonGeorge Robertson
authored andcommitted
Fixed examples
1 parent b944ecc commit e8b4a63

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

codonPython/check_null.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def check_null(dataframe: pd.DataFrame) -> bool:
1919
2020
Examples
2121
--------
22-
>>> check_null(data = pd.DataFrame(data = {'col1': [1,2], 'col2': [3,4]}))
22+
>>> check_null(data = pd.DataFrame({'col1': [1,2], 'col2': [3,4]}))
2323
False
2424
>>> check_null(data = pd.DataFrame({'col1': [1,numpy.nan], 'col2': [3,4]}))
2525
True

0 commit comments

Comments
 (0)