@@ -241,39 +241,39 @@ def test_parse_annotation(annotation: Any, module: str, class_name: str, args: t
241
241
# Internal tuple with following additional type cannot be flattened (specific to nptyping?)
242
242
# These cases will fail if nptyping restructures its internal module hierarchy
243
243
(
244
- nptyping .NDArray [nptyping .Shape ["*" ], nptyping .Float ], # type: ignore # nptyping/issues/77
244
+ nptyping .NDArray [nptyping .Shape ["*" ], nptyping .Float ],
245
245
(
246
246
":py:class:`~nptyping.base_meta_classes.NDArray`\\ [:py:class:`~nptyping.base_meta_classes.Shape`\\ [*], "
247
247
":py:class:`~numpy.float64`]"
248
248
),
249
249
),
250
250
(
251
- nptyping .NDArray [nptyping .Shape ["64" ], nptyping .Float ], # type: ignore # nptyping/issues/77
251
+ nptyping .NDArray [nptyping .Shape ["64" ], nptyping .Float ],
252
252
(
253
253
":py:class:`~nptyping.base_meta_classes.NDArray`\\ [:py:class:`~nptyping.base_meta_classes.Shape`\\ [64],"
254
254
" :py:class:`~numpy.float64`]"
255
255
),
256
256
),
257
257
(
258
- nptyping .NDArray [nptyping .Shape ["*, *" ], nptyping .Float ], # type: ignore # nptyping/issues/77
258
+ nptyping .NDArray [nptyping .Shape ["*, *" ], nptyping .Float ],
259
259
(
260
260
":py:class:`~nptyping.base_meta_classes.NDArray`\\ [:py:class:`~nptyping.base_meta_classes.Shape`\\ [*, "
261
261
"*], :py:class:`~numpy.float64`]"
262
262
),
263
263
),
264
264
(
265
- nptyping .NDArray [nptyping .Shape ["*, ..." ], nptyping .Float ], # type: ignore # nptyping/issues/77
265
+ nptyping .NDArray [nptyping .Shape ["*, ..." ], nptyping .Float ],
266
266
(":py:class:`~nptyping.base_meta_classes.NDArray`\\ [:py:data:`~typing.Any`, :py:class:`~numpy.float64`]" ),
267
267
),
268
268
(
269
- nptyping .NDArray [nptyping .Shape ["*, 3" ], nptyping .Float ], # type: ignore # nptyping/issues/77
269
+ nptyping .NDArray [nptyping .Shape ["*, 3" ], nptyping .Float ],
270
270
(
271
271
":py:class:`~nptyping.base_meta_classes.NDArray`\\ [:py:class:`~nptyping.base_meta_classes.Shape`\\ [*, 3"
272
272
"], :py:class:`~numpy.float64`]"
273
273
),
274
274
),
275
275
(
276
- nptyping .NDArray [nptyping .Shape ["3, ..." ], nptyping .Float ], # type: ignore # nptyping/issues/77
276
+ nptyping .NDArray [nptyping .Shape ["3, ..." ], nptyping .Float ],
277
277
(
278
278
":py:class:`~nptyping.base_meta_classes.NDArray`\\ [:py:class:`~nptyping.base_meta_classes.Shape`\\ [3, "
279
279
"...], :py:class:`~numpy.float64`]"
0 commit comments