mirror of https://github.com/tqdm/tqdm.git
minor linting
This commit is contained in:
parent
eb9377f299
commit
59a48bab77
|
@ -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
|
||||
|
|
|
@ -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"""
|
||||
|
|
Loading…
Reference in New Issue