Rename kwargs and add tests

This commit is contained in:
Vinayak Mehta
2018-12-21 15:09:37 +05:30
parent f6aa21c31f
commit 50b4468aff
10 changed files with 193 additions and 113 deletions
+2 -2
View File
@@ -319,7 +319,7 @@ You can solve this by passing ``flag_size=True``, which will enclose the supersc
Control how text is grouped into rows
-------------------------------------
You can pass ``row_close_tol=<+int>`` to group the rows closer together, as shown below.
You can pass ``row_tol=<+int>`` to group the rows closer together, as shown below.
::
@@ -337,7 +337,7 @@ You can pass ``row_close_tol=<+int>`` to group the rows closer together, as show
::
>>> tables = camelot.read_pdf('group_rows.pdf', flavor='stream', row_close_tol=10)
>>> tables = camelot.read_pdf('group_rows.pdf', flavor='stream', row_tol=10)
>>> tables[0].df
.. tip::