Skip to content

Commit 3eb88fc

Browse files
authored
Use base pipe (#2168)
In a manual test file, it still used the magrittr pipe
1 parent be6e3ec commit 3eb88fc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/manual/manual-list-ghe-repos.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ Sys.setenv(GITHUB_API_URL = "https://github.ubc.ca")
99
x <- gh::gh("GET /user/repos", .limit = 100)
1010
length(x)
1111
dat <- tibble(payload = x)
12-
dat %>%
13-
hoist(payload, "full_name") %>%
12+
dat |>
13+
hoist(payload, "full_name") |>
1414
print(n = Inf)
1515

1616
create_from_github("github-administration/migration", destdir = "~/tmp")

0 commit comments

Comments
 (0)