This is an automated email from the ASF dual-hosted git repository.
kou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/main by this push:
new 4f06beb737 MINOR: [R] Fix lint error (#38170)
4f06beb737 is described below
commit 4f06beb737c3d1401e011e0a2ef33b159ab25995
Author: Dewey Dunnington <[email protected]>
AuthorDate: Mon Oct 9 23:26:10 2023 -0300
MINOR: [R] Fix lint error (#38170)
### Rationale for this change
The CI job is failing on Windows after #38002. This was masked in review
because the Windows job was failing for another reason (which is also now
fixed).
### What changes are included in this PR?
The error is fixed.
### Are these changes tested?
Covered by existing tests
### Are there any user-facing changes?
No
Authored-by: Dewey Dunnington <[email protected]>
Signed-off-by: Sutou Kouhei <[email protected]>
---
r/R/csv.R | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/r/R/csv.R b/r/R/csv.R
index 89df75a4b0..ef35c7d6d5 100644
--- a/r/R/csv.R
+++ b/r/R/csv.R
@@ -304,7 +304,7 @@ read_csv2_arrow <- function(file,
timestamp_parsers = NULL) {
mc <- match.call()
mc$delim <- ";"
- mc$decimal_point = ","
+ mc$decimal_point <- ","
mc[[1]] <- get("read_delim_arrow", envir = asNamespace("arrow"))
eval.parent(mc)
}