Skip to content

Commit

Permalink
add self
Browse files Browse the repository at this point in the history
  • Loading branch information
christophmluscher committed Dec 3, 2024
1 parent 8a01101 commit 30d0c9e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions text/processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -336,8 +336,8 @@ def __init__(
self.num_text_file_lines = num_text_file_lines
self.zip_output = zip_output

self.num_output_files = self.num_text_file_lines // num_lines_per_split + int(
bool(self.num_text_file_lines % num_lines_per_split)
self.num_output_files = self.num_text_file_lines // self.num_lines_per_split + int(
bool(self.num_text_file_lines % self.num_lines_per_split)
)

self.out_split_text_files = {
Expand Down

0 comments on commit 30d0c9e

Please sign in to comment.