Skip to content

Commit 30cca13

Browse files
committed
noqa solves everything
1 parent bd89079 commit 30cca13

1 file changed

Lines changed: 9 additions & 10 deletions

File tree

qbreader/__init__.py

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,21 @@
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

1313
import importlib.metadata
1414

1515
import qbreader.types as types
1616
from qbreader.asynchronous import Async
1717
from 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",
@@ -25,6 +24,6 @@
2524
)
2625

2726
# add all symbols from qbreader.types to __all__
28-
__all__ += types.__all__
27+
__all__ += types.__all__ # type: ignore
2928

3029
del importlib

0 commit comments

Comments
 (0)