File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11"""The official qbreader API python wrapper.
22
3- .. note::
4- Even though useful type aliases defined in `qbreader.types` are reexported here,
5- they are not documented here by `sphinx-autodoc`, but are documented in the
6- `types` module.
3+ .. note::
4+ Even though useful type aliases defined in `qbreader.types` are reexported here,
5+ they are not documented here by `sphinx-autodoc`, but are documented in the
6+ `types` module.
77
8- See also :
9- * https://github.com/sphinx-doc/sphinx/issues/8547
10- * https://github.com/sphinx-doc/sphinx/issues/1063
8+ See:
9+ * https://github.com/sphinx-doc/sphinx/issues/8547
10+ * https://github.com/sphinx-doc/sphinx/issues/1063
1111"""
1212
1313import importlib .metadata
1414
1515import qbreader .types as types
1616from qbreader .asynchronous import Async
1717from qbreader .synchronous import Sync
18- from qbreader .types import *
19-
18+ from qbreader .types import * # noqa: F401, F403
2019__version__ = importlib .metadata .version ("qbreader" )
2120__all__ = (
2221 "Async" ,
2524)
2625
2726# add all symbols from qbreader.types to __all__
28- __all__ += types .__all__
27+ __all__ += types .__all__ # type: ignore
2928
3029del importlib
You can’t perform that action at this time.
0 commit comments