Skip to content

Commit

Permalink
remove accidental argument
Browse files Browse the repository at this point in the history
  • Loading branch information
sauyon committed Mar 14, 2023
1 parent cd93d95 commit c21510f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bentoml/_internal/marshal/dispatcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ async def _func(data: t.Any) -> t.Any:
return _func

async def train_optimizer(
self, num_required_reqs: int, num_reqs_to_train: int, batch_size: int, wait: 0,
self, num_required_reqs: int, num_reqs_to_train: int, batch_size: int,
):
if self.max_batch_size < batch_size:
batch_size = self.max_batch_size
Expand Down

0 comments on commit c21510f

Please sign in to comment.