From a97b50ef21fa616432de39ea756f499c687acf15 Mon Sep 17 00:00:00 2001 From: Vinayak Mehta Date: Sat, 6 Jul 2019 22:59:51 +0530 Subject: [PATCH] Update flavor kwargs --- camelot/utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/camelot/utils.py b/camelot/utils.py index fec4bd3..e7ad848 100644 --- a/camelot/utils.py +++ b/camelot/utils.py @@ -103,7 +103,7 @@ def download_url(url): return filepath -stream_kwargs = ["columns", "row_tol", "column_tol"] +stream_kwargs = ["columns", "edge_tol", "row_tol", "column_tol"] lattice_kwargs = [ "process_background", "line_scale", @@ -114,6 +114,7 @@ lattice_kwargs = [ "threshold_blocksize", "threshold_constant", "iterations", + "resolution", ]