minor linting

This commit is contained in:
Casper da Costa-Luis 2020-01-19 16:40:16 +00:00
parent eb9377f299
commit 59a48bab77
No known key found for this signature in database
GPG Key ID: 986B408043AE090D
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,6 @@
"""
Thin wrappers around `itertools`.
"""
from __future__ import absolute_import
from tqdm.auto import tqdm as tqdm_auto
from copy import deepcopy

View File

@ -1,7 +1,6 @@
"""
Tests for `tqdm.contrib`
"""
import sys
from tqdm.contrib.concurrent import thread_map, process_map
from tests_tqdm import with_setup, pretest, posttest, SkipTest, StringIO, \
closing
@ -11,6 +10,7 @@ def incr(x):
"""Dummy function"""
return x + 1
@with_setup(pretest, posttest)
def test_thread_map():
"""Test contrib.concurrent.thread_map"""