File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change 3737
3838 from busio import I2C
3939except ImportError :
40- # define I2C to avoid the error:
41- # def __init__(self, i2c_bus: I2C, addr: int = 0x40) -> None:
42- # NameError: name 'I2C' is not defined
43- I2C = None
40+ pass
4441
4542__version__ = "0.0.0+auto.0"
4643__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_INA219.git"
@@ -153,7 +150,7 @@ class INA219:
153150 # raw_current RO : Current register (not scaled)
154151 # calibration RW : calibration register (note: value is cached)
155152
156- def __init__ (self , i2c_bus : I2C , addr : int = 0x40 ) -> None :
153+ def __init__ (self , i2c_bus : " I2C" , addr : int = 0x40 ) -> None :
157154 self .i2c_device = I2CDevice (i2c_bus , addr )
158155 self .i2c_addr = addr
159156
You can’t perform that action at this time.
0 commit comments