Skip to content

Commit

Permalink
fix mismatch apparent method as.list.struct (#634)
Browse files Browse the repository at this point in the history
  • Loading branch information
DyfanJones authored Jun 26, 2023
2 parents e69265d + 092a141 commit 43c9611
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion paws.common/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: paws.common
Type: Package
Title: Paws Low-Level Amazon Web Services API
Version: 0.5.7
Version: 0.5.8
Authors@R: c(
person("David", "Kretch", email = "david.kretch@gmail.com", role = "aut"),
person("Adam", "Banker", email = "adam.banker39@gmail.com", role = "aut"),
Expand Down
3 changes: 3 additions & 0 deletions paws.common/NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# paws.common 0.5.8
* fix mismatch apparent method as.list.struct (#634)

# paws.common 0.5.7
* skip network unit test on cran (#632)

Expand Down
2 changes: 1 addition & 1 deletion paws.common/R/struct.R
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ struct <- function(...) {

`$<-.struct` <- `[<-.struct`

as.list.struct <- function(x) {
as.list.struct <- function(x, ...) {
class(x) <- "list"
return(x)
}

0 comments on commit 43c9611

Please sign in to comment.