summaryrefslogtreecommitdiff
path: root/hdl/testing/delme.py
diff options
context:
space:
mode:
Diffstat (limited to 'hdl/testing/delme.py')
-rw-r--r--hdl/testing/delme.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/hdl/testing/delme.py b/hdl/testing/delme.py
deleted file mode 100644
index 1264357..0000000
--- a/hdl/testing/delme.py
+++ /dev/null
@@ -1,11 +0,0 @@
-class A():
- def __init__(self):
- print(f"Parent Class: {self.__class__}")
-
-class B(A):
- def __init__(self):
- super().__init__()
- print(f"Child Class: {self.__class__}")
-
-
-b = B() \ No newline at end of file