diff options
author | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2024-06-02 23:05:41 -0400 |
---|---|---|
committer | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2024-06-02 23:05:41 -0400 |
commit | 605238126fe5f99d69b0de3f5278ff83f21349b6 (patch) | |
tree | 6d15d11cb15f14c90f22a48e7e8db7dafbc62c77 /qolab/tableflow/__init__.py | |
parent | d32aaa6bce0eacd5d6ee919a239c7aaad606fc23 (diff) | |
download | qolab-605238126fe5f99d69b0de3f5278ff83f21349b6.tar.gz qolab-605238126fe5f99d69b0de3f5278ff83f21349b6.zip |
more test cases and bugfixes in tableflow
Diffstat (limited to 'qolab/tableflow/__init__.py')
-rw-r--r-- | qolab/tableflow/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qolab/tableflow/__init__.py b/qolab/tableflow/__init__.py index 2a150a8..1466dde 100644 --- a/qolab/tableflow/__init__.py +++ b/qolab/tableflow/__init__.py @@ -81,7 +81,7 @@ def reflowTable(tIn, tOut, process_row_func=None, postProcessedColums=None, extr iOut = ilocRowOrAdd(tOut, rowIn) rowOutBefore = tOut.iloc[iOut] - if not (redo or isRedoNeeded(rowOut, postProcessedColums) ): + if not (redo or isRedoNeeded(rowOutBefore, postProcessedColums) ): continue # processing data describing row |