Ajstros / pyripherals

Python solution for communicating with peripheral ICs
GNU General Public License v3.0
2 stars 3 forks source link

Remove import imp #26

Open lucask07 opened 2 years ago

lucask07 commented 2 years ago

python -m pytest -m no_fpga

shows a warning for deprecation of the imp module.

calc_impedance_test.py:13: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses

Line 13 has: import imp

This warning can be removed by changing line 13 to: import importlib