Skip to content

Commit

Permalink
Appease linter
Browse files Browse the repository at this point in the history
  • Loading branch information
thisisnic committed Jan 12, 2023
1 parent c430ae8 commit e019ea6
Showing 1 changed file with 19 additions and 5 deletions.
24 changes: 19 additions & 5 deletions r/R/dataset.R
Original file line number Diff line number Diff line change
Expand Up @@ -285,11 +285,25 @@ open_csv_dataset <- function(sources,
}

open_dataset(
sources = sources, schema = schema, partitioning = partitioning, hive_style = hive_style,
unify_schemas = unify_schemas, factory_options = factory_options, delim = delim, format = "csv", quote = quote, escape_double = escape_double,
escape_backslash = escape_backslash, col_names = col_names, col_types = col_types,
na = na, skip_empty_rows = skip_empty_rows, skip = skip, convert_options = convert_options,
read_options = read_options, timestamp_parsers = timestamp_parsers
sources = sources,
schema = schema,
partitioning = partitioning,
hive_style = hive_style,
unify_schemas = unify_schemas,
factory_options = factory_options,
delim = delim,
format = "csv",
quote = quote,
escape_double = escape_double,
escape_backslash = escape_backslash,
col_names = col_names,
col_types = col_types,
na = na,
skip_empty_rows = skip_empty_rows,
skip = skip,
convert_options = convert_options,
read_options = read_options,
timestamp_parsers = timestamp_parsers
)
}

Expand Down

0 comments on commit e019ea6

Please sign in to comment.