"""MCP2221 Device Class Definition"""
 
     def __init__(self):
-        pass # This is a "fake" implementation
+        pass  # This is a "fake" implementation
 
     def close(self):
         """Close the hid device. Does nothing if the device is not open."""
         # try to close the device before destroying the instance
         pass
 
-
     def _hid_xfer(self, report, response=True):
         """Perform HID Transfer"""
         return None
         """Get Current GPIO Pin Value"""
         pass
 
-
     # ----------------------------------------------------------------
     # I2C
     # ----------------------------------------------------------------
         """Perform an I2C Device Scan"""
         pass
 
-
     # ----------------------------------------------------------------
     # ADC
     # ----------------------------------------------------------------
     # pylint: enable=unused-argument
 
 
-mcp2221 = MCP2221()
\ No newline at end of file
+mcp2221 = MCP2221()