Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrian Chan committed Sep 9, 2024
1 parent 8c5a2c7 commit b9211c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## New Feature

* New argument in `xportr_write()` allows users to specify the maximum file size (in GB) of their exported xpt files. (#268)
* `xportr_split()` is deprecated with this new argument above now added to `xportr_write()`

# xportr 0.4.0

Expand Down
2 changes: 1 addition & 1 deletion R/write.R
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ xportr_write <- function(.df,

assert_data_frame(.df)
assert_string(path)
checkmate::assert_numeric(max_size_gb, null.ok = TRUE)
assert_numeric(max_size_gb, null.ok = TRUE)
assert_metadata(metadata, null.ok = TRUE)
assert_logical(strict_checks)

Expand Down

0 comments on commit b9211c8

Please sign in to comment.