Skip to content

Commit 2a71be7

Browse files
delint
1 parent c13b45a commit 2a71be7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/bmerge.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ coerce_col = function(dt, col, from_type, to_type, from_name, to_name, from_deta
2020
"Coercing %s column %s%s to type %s to match type of %s%s.\n",
2121
from_type, from_name, from_detail, to_type, to_name, to_detail
2222
)
23-
as.f = switch(to_type, integer64 = bit64::as.integer64, match.fun(paste0("as.", to_type)))
23+
as.f = switch(to_type, integer64 = bit64::as.integer64, match.fun(paste0("as.", to_type)))
2424
# do not copy attributes when coercing factor (to character)
2525
set(dt, j=col, value = if (is.factor(dt[[col]])) as.f(dt[[col]]) else cast_with_atts(dt[[col]], as.f))
2626
}

0 commit comments

Comments
 (0)