Skip to content

Commit

Permalink
fixed CRAN note
Browse files Browse the repository at this point in the history
  • Loading branch information
chrispyles committed Mar 23, 2022
1 parent 2913099 commit 2adecdc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ Imports:
jsonlite,
pryr,
R6,
zip
zip,
methods
Suggests:
IRdisplay
2 changes: 1 addition & 1 deletion R/ottr.r
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ update_ast_check_calls = function(tree, list_name) {
list_idx = 1
for (i in seq_along(tree)) {
expr = tree[[i]]
if (class(expr) == "=") {
if (methods::is(expr, "=")) {
right_expr = expr[[3]]
call = right_expr[[1]]
if (length(call) >= 3) {
Expand Down

0 comments on commit 2adecdc

Please sign in to comment.