]> Repositories - hackapet/Adafruit_Blinka_Displayio.git/blobdiff - displayio/i2cdisplay.py
Ran black
[hackapet/Adafruit_Blinka_Displayio.git] / displayio / i2cdisplay.py
index 151c17eb66124b1478e7856fa29349cc94efa8ac..408c2ac1282afdede394379c03dc7db5be6bf38a 100644 (file)
@@ -21,7 +21,7 @@
 # THE SOFTWARE.
 
 """
-`displayio`
+`displayio.i2cdisplay`
 ================================================================================
 
 displayio for Blinka
@@ -61,11 +61,11 @@ class I2CDisplay:
         """Performs a hardware reset via the reset pin. Raises an exception if called
         when no reset pin is available.
         """
-        pass
+        raise NotImplementedError("I2CDisplay reset has not been implemented yet")
 
     def send(self, command, data):
         """Sends the given command value followed by the full set of data. Display state,
         such as vertical scroll, set via send may or may not be reset once the code is
         done.
         """
-        pass
+        raise NotImplementedError("I2CDisplay send has not been implemented yet")