]> Repositories - hackapet/Adafruit_Blinka.git/blobdiff - src/adafruit_blinka/microcontroller/fake_mcp2221/fake_mcp2221.py
remove fake_mcp2221 and all references of it, we're starting fresh!
[hackapet/Adafruit_Blinka.git] / src / adafruit_blinka / microcontroller / fake_mcp2221 / fake_mcp2221.py
diff --git a/src/adafruit_blinka/microcontroller/fake_mcp2221/fake_mcp2221.py b/src/adafruit_blinka/microcontroller/fake_mcp2221/fake_mcp2221.py
deleted file mode 100644 (file)
index 74a0713..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-# SPDX-FileCopyrightText: 2021 Melissa LeBlanc-Williams for Adafruit Industries
-#
-# SPDX-License-Identifier: MIT
-"""Chip Definition for MCP2221"""
-
-
-class MCP2221:
-    """MCP2221 Device Class Definition"""
-
-    def __init__(self):
-        pass  # This is a "fake" implementation
-
-    def __del__(self):
-        # try to close the device before destroying the instance
-        return
-
-    # pylint: enable=unused-argument
-
-
-mcp2221 = MCP2221()