We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23170ee commit 9584506Copy full SHA for 9584506
2 files changed
progressbar/bar.py
@@ -34,9 +34,7 @@
34
# float also accepts integers and longs but we don't want an explicit union
35
# due to type checking complexity
36
NumberT = float
37
-ValueT = typing.Union[
38
- NumberT, typing.Type[base.UnknownLength], None
39
-]
+ValueT = typing.Union[NumberT, typing.Type[base.UnknownLength], None]
40
41
T = types.TypeVar('T')
42
tox.ini
@@ -4,6 +4,7 @@ envlist =
4
py39
5
py310
6
py311
7
+ py312
8
docs
9
black
10
ruff
@@ -45,7 +46,7 @@ whitelist_externals =
45
46
commands =
47
rm -f docs/modules.rst
48
mkdir -p docs/_static
- sphinx-apidoc -e -o docs/ progressbar
49
+ sphinx-apidoc -e -o docs/ progressbar os_specific
50
51
sphinx-build -b html -d docs/_build/doctrees docs docs/_build/html {posargs}
52
0 commit comments