Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
erhla committed Jul 11, 2024
1 parent a49e2f6 commit 1330059
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions data-raw/sample_tax_bills/sample_tax_bills_detail.R
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ row_to_names <- function(df) {
# Different tax bills can have different table sizes depending on the number of
# taxing district.

extract_tax_bill <- function(file){
extract_tax_bill <- function(file) {
base_file <- basename(file)
tbl <- pdf_text(file) %>%
paste(., collapse='\n') %>%
paste(., collapse = "\n") %>%
str_extract(., regex("MISCELLANEOUS TAXES.*", dotall = TRUE)) %>%
str_split(., "\n") %>%
unlist() %>%
Expand Down

0 comments on commit 1330059

Please sign in to comment.