Skip to content

Commit

Permalink
chore: added missing utils-import
Browse files Browse the repository at this point in the history
  • Loading branch information
kapsner committed Jun 6, 2024
1 parent 398c544 commit 46ae613
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
1 change: 1 addition & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ Imports:
shinyFiles,
shinyjs,
shinyWidgets,
utils,
waiter
Suggests:
lintr,
Expand Down
7 changes: 6 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@
- fixing ci
([8210403](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/821040353538db5b2da58d393a9169ec2f6310a1))

#### Docs

- updated man-files to comply with cran-checks
([398c544](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/398c544ece0e368a4170006122638750b5a36b49))

#### Other changes

- merged into development
Expand All @@ -47,7 +52,7 @@
([1562003](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/1562003e10995a56c53d09e7dc0d870cef41f4f7))

Full set of changes:
[`v0.2.3...8b57b1f`](https://gitlab.miracum.org/miracum/dqa/dqagui/-/compare/v0.2.3...8b57b1f)
[`v0.2.3...398c544`](https://gitlab.miracum.org/miracum/dqa/dqagui/-/compare/v0.2.3...398c544)

## v0.2.3 (2023-08-30)

Expand Down
4 changes: 2 additions & 2 deletions R/moduleDifferences.R
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,12 @@ module_differences_server <-


output$descr_description <- renderTable({
head(summary_out, 50)
utils::head(summary_out, 50)
})

# render source statistics
output$descr_selection_source_table <- renderTable({
head(source_out, 200)
utils::head(source_out, 200)
}
)

Expand Down
1 change: 1 addition & 0 deletions data-raw/devstuffs.R
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ my_desc$write(file = "DESCRIPTION")

# Imports
usethis::use_package("data.table", type = "Imports")
usethis::use_package("utils", type = "Imports")
usethis::use_package("magrittr", type = "Imports")
# For date-restriction:
usethis::use_package("daterangepicker", type = "Imports")
Expand Down

0 comments on commit 46ae613

Please sign in to comment.