Skip to content

Commit

Permalink
Replace rlang::is_empty by base R condition
Browse files Browse the repository at this point in the history
  • Loading branch information
khaled-alshamaa committed Sep 18, 2024
1 parent 5dec60b commit 92abf47
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Type: Package
Package: QBMS
Title: Query the Breeding Management System(s)
Version: 1.2.0
Version: 1.5.0
Date: 2024-09-19
Authors@R: c(
person("Khaled", "Al-Shamaa", , "[email protected]", role = c("aut", "cre")),
Expand Down
2 changes: 1 addition & 1 deletion R/gigwa.R
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ gigwa_get_variants <- function(max_missing = 1, min_maf = 0.5, samples = NULL, s

response <- httr2::req_perform(req)

if (rlang::is_empty(response$body)) {
if (length(response$body) == 0) {
break
}
}
Expand Down

0 comments on commit 92abf47

Please sign in to comment.