Skip to content

Commit

Permalink
Clarify which parent method is being referred to
Browse files Browse the repository at this point in the history
  • Loading branch information
msamogh authored Apr 25, 2019
1 parent fe94df0 commit 69af86f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nonechucks/dataloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ def _process_next_batch(self, curr_batch):
# batch instead of trying to fill it up to a length of batch_size.
#
# Stays True until the current batch is filled so that nested calls for
# _process_next_batch from within the loop simply call the parent
# method.
# _process_next_batch from within the loop simply call the parent's
# version of the _process_next_batch.
self.coalescing_in_progress = True
n_empty_slots = self.batch_size - batch_len(curr_batch)
while n_empty_slots > 0:
Expand Down

0 comments on commit 69af86f

Please sign in to comment.