summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2021-09-28 16:31:48 -0400
committerPeter LaFosse <peter@vector35.com>2021-09-28 16:31:48 -0400
commitbd00adfdaf7fd80b70e52395a4200dff7d8e53cc (patch)
tree219cbfa2a893d07589c3971d769c06d206766997 /python
parentd175f296e164df461f004f5844297c60f0de8650 (diff)
Remove some unnecessary code
Diffstat (limited to 'python')
-rw-r--r--python/types.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/python/types.py b/python/types.py
index 2374c6b1..e1c7474c 100644
--- a/python/types.py
+++ b/python/types.py
@@ -1890,9 +1890,6 @@ class StructureType(Type):
if core is not None:
core.BNFreeStructure(self.struct_handle)
- def __repr__(self):
- return f"<struct: {self.registered_name}>"
-
def __eq__(self, other):
if not isinstance(other, self.__class__):
return NotImplemented