Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
heikoklein committed Sep 11, 2024
1 parent 2f331b3 commit e8dd220
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,11 @@ def __init__(
lines = []
_fidx = 0
members = tf.getmembers()
bar = tqdm(desc="extracting tar file...", total=len(members), disable=None)
bar = tqdm(
desc="extracting tar file...",
total=len(members),
disable=None,
)
for _midx, member in enumerate(members):
if fnmatch(member.name, FILE_MASK):
bar.update(1)
Expand Down

0 comments on commit e8dd220

Please sign in to comment.