File tree Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change
1
+ from typing import final
2
+
3
+ @final
1
4
class NBitBase : ...
2
- class _128Bit (NBitBase ): ... # undocumented
3
- class _96Bit (_128Bit ): ... # undocumented
4
- class _64Bit (_96Bit ): ... # undocumented
5
- class _32Bit (_64Bit ): ... # undocumented
6
- class _16Bit (_32Bit ): ... # undocumented
7
- class _8Bit (_16Bit ): ... # undocumented
5
+
6
+ class _128Bit (NBitBase ): ... # type: ignore[misc] # pyright: ignore[reportGeneralTypeIssues]
7
+ class _96Bit (_128Bit ): ... # type: ignore[misc]
8
+ class _64Bit (_96Bit ): ... # type: ignore[misc]
9
+ class _32Bit (_64Bit ): ... # type: ignore[misc]
10
+ class _16Bit (_32Bit ): ... # type: ignore[misc]
11
+ class _8Bit (_16Bit ): ... # type: ignore[misc]
Original file line number Diff line number Diff line change @@ -8,8 +8,6 @@ numpy(\..+)?\.floating.as_integer_ratio
8
8
numpy(\..+)?\.complexfloating.__hash__
9
9
numpy(\..+)?\.complexfloating.__complex__
10
10
11
- numpy.typing.NBitBase
12
-
13
11
numpy.compat
14
12
numpy.compat.py3k
15
13
You can’t perform that action at this time.
0 commit comments