Closed Dynortice closed 5 years ago
Function gather_factory uses tidyr::unnest(..name, ..json, .drop = FALSE) but now it returning warning, so it's must be as tidyr::unnest(c(..name, ..json))
gather_factory
tidyr::unnest(..name, ..json, .drop = FALSE)
tidyr::unnest(c(..name, ..json))
Taken care of in #113
Function
gather_factory
usestidyr::unnest(..name, ..json, .drop = FALSE)
but now it returning warning, so it's must be astidyr::unnest(c(..name, ..json))