Skip to content

Commit b992894

Browse files
committed
suppress no vis binding notes
1 parent 434054a commit b992894

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

DESCRIPTION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: dashboard
22
Title: What the Package Does (One Line, Title Case)
3-
Version: 0.2.2.046
3+
Version: 0.2.2.047
44
Authors@R:
55
person(given = "First",
66
family = "Last",

R/review-history.R

+4
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,10 @@ rev_hours_airtable_internal <- function () {
157157
)
158158
rev_hours <- rev_hours [which (!is.na (rev_hours$number) & !is.na (rev_hours$review_hours)), ]
159159

160+
# Suppress 'no visible binding' notes:
161+
number <- review_hours <- state <- stats <- editor <- opened_at <-
162+
closed_at <- duration_days <- NULL
163+
160164
rev_hist <- m_review_history (quiet = TRUE)
161165
dplyr::left_join (rev_hours, rev_hist, by = "number") |>
162166
dplyr::select (number, review_hours, state, stats, editor, opened_at, closed_at, duration_days)

codemeta.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"name": "dashboard: What the Package Does (One Line, Title Case)",
77
"codeRepository": "https://github.com/ropensci-review-tools/dashboard",
88
"license": "https://spdx.org/licenses/MIT",
9-
"version": "0.2.2.046",
9+
"version": "0.2.2.047",
1010
"programmingLanguage": {
1111
"@type": "ComputerLanguage",
1212
"name": "R",

0 commit comments

Comments
 (0)