Skip to content

Commit

Permalink
remove unneeded tqdm package
Browse files Browse the repository at this point in the history
  • Loading branch information
jdidion committed Jun 14, 2017
1 parent 6f03696 commit 6af0674
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/test_performance.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
from contextlib import contextmanager
import gzip
import time
from tqdm import tqdm
from xphyle.utils import read_lines
from xphyle.paths import TempDir
import pytest
Expand Down Expand Up @@ -36,7 +35,7 @@ def perftest(name, text_generator, num_iter=10):
paths = tuple(
root.make_file(suffix='.gz')
for _ in range(num_iter))
for path in tqdm(paths):
for path in paths:
txt = text_generator()
total_size += len(txt)
with gzip.open(path, 'wt') as out:
Expand Down

0 comments on commit 6af0674

Please sign in to comment.