Skip to content

Commit

Permalink
Replace None w/ default in table_settings docs
Browse files Browse the repository at this point in the history
Per @samkit-jain suggestion in PR #545
  • Loading branch information
jsvine committed Nov 28, 2021
1 parent e13e6ce commit 1252727
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -316,11 +316,11 @@ By default, `extract_tables` uses the page's vertical and horizontal lines (or r
"min_words_horizontal": 1,
"keep_blank_chars": False,
"text_tolerance": 3,
"text_x_tolerance": None,
"text_y_tolerance": None,
"text_x_tolerance": 3,
"text_y_tolerance": 3,
"intersection_tolerance": 3,
"intersection_x_tolerance": None,
"intersection_y_tolerance": None,
"intersection_x_tolerance": 3,
"intersection_y_tolerance": 3,
}
```

Expand Down

0 comments on commit 1252727

Please sign in to comment.