8000 MAINT: Fix issue 77: Don't allow initializing `generic` by BvB93 · Pull Request #80 · numpy/numpy-stubs · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Jun 10, 2020. It is now read-only.

MAINT: Fix issue 77: Don't allow initializing generic #80

Closed
wants to merge 8 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
MAINT: remove ABCMeta import
  • Loading branch information
person142 committed Jun 6, 2020
commit b71ffd28ceb7ac717b81d401adc88afcc16fb4b1
2 changes: 1 addition & 1 deletion numpy-stubs/__init__.pyi
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import builtins
import sys
import datetime as dt
from abc import abstractmethod, ABCMeta
from abc import abstractmethod

from numpy.core._internal import _ctypes
from numpy.typing import ArrayLike, DtypeLike, _Shape, _ShapeLike
Expand Down
0