jonkeane commented on code in PR #46664:
URL: https://github.com/apache/arrow/pull/46664#discussion_r2121056392
##########
r/R/filesystem.R:
##########
@@ -554,7 +554,8 @@ GcsFileSystem <- R6Class("GcsFileSystem",
# Convert from nanoseconds to POSIXct w/ UTC tz
if ("expiration" %in% names(out)) {
out$expiration <- as.POSIXct(
- out$expiration / 1000000000, origin = "1970-01-01", tz = "UTC"
+ out$expiration / 1000000000,
+ origin = "1970-01-01", tz = "UTC"
Review Comment:
I'm surprised that this wasn't produced: This is what it should be given
linting definitions
```suggestion
out$expiration / 1000000000,
origin = "1970-01-01",
tz = "UTC"
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]