Unverified Commit a7ff1172 authored by James Lamb's avatar James Lamb Committed by GitHub
Browse files

[R-package] remove unused '...' in Booster constructor (#4523)


Co-authored-by: default avatarNikita Titov <nekit94-12@hotmail.com>
parent 2edb8188
...@@ -23,11 +23,9 @@ Booster <- R6::R6Class( ...@@ -23,11 +23,9 @@ Booster <- R6::R6Class(
initialize = function(params = list(), initialize = function(params = list(),
train_set = NULL, train_set = NULL,
modelfile = NULL, modelfile = NULL,
model_str = NULL, model_str = NULL) {
...) {
# Create parameters and handle # Create parameters and handle
params <- append(params, list(...))
handle <- NULL handle <- NULL
# Attempts to create a handle for the dataset # Attempts to create a handle for the dataset
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment