mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-22 17:47:02 +03:00
8fe00bcff0
* change erroneous issubclass call to isinstance * import numpy.typing in tests * better subclass check * fix return
15 lines
299 B
Python
15 lines
299 B
Python
"""Test module for wiring."""
|
|
|
|
import sys
|
|
|
|
if "pypy" not in sys.version.lower():
|
|
import numpy # noqa
|
|
from numpy import * # noqa
|
|
from numpy.typing import * # noqa
|
|
|
|
import scipy # noqa
|
|
from scipy import * # noqa
|
|
|
|
import builtins # noqa
|
|
from builtins import * # noqa
|