Skip to content

Commit

Permalink
#143 Fixed for TSV-writer, sync API with AREkit
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolay-r committed Apr 16, 2024
1 parent 73be7bd commit 1ab8465
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arelight/predict/writer_csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def write(self, header, contents_it, total=None):
self.__write(header)

wrapped_it = progress_bar_defined(iterable=contents_it, desc='Writing output (tsv)', unit='rows',
total=total, log_file=self.__log_out)
total=total, file=self.__log_out)

for contents in wrapped_it:
self.__write(contents)
Expand Down

0 comments on commit 1ab8465

Please sign in to comment.