Skip to content

Commit

Permalink
Make r_process and r_session not cloneable (#289)
Browse files Browse the repository at this point in the history
  • Loading branch information
karawoo authored Aug 28, 2024
1 parent 98eec30 commit 6fd231d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions R/r-process.R
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
r_process <- R6::R6Class(
"r_process",
inherit = processx::process,
cloneable = FALSE,
public = list(

#' @description
Expand Down
2 changes: 1 addition & 1 deletion R/r-session.R
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
r_session <- R6::R6Class(
"r_session",
inherit = processx::process,

cloneable = FALSE,
public = list(

#' @field status
Expand Down

0 comments on commit 6fd231d

Please sign in to comment.