From d8f83e6bd34d4a533a404489ed63a45385ba7ad8 Mon Sep 17 00:00:00 2001 From: Jordan Wiens Date: Thu, 26 Sep 2019 14:49:24 -0400 Subject: correct invalid documentation --- python/binaryview.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'python/binaryview.py') diff --git a/python/binaryview.py b/python/binaryview.py index 3d9fe8d9..39ccd773 100644 --- a/python/binaryview.py +++ b/python/binaryview.py @@ -948,8 +948,8 @@ class TagType(object): self.handle = core.handle_of_type(handle, core.BNTagType) @property - """Name of the TagType""" def name(self): + """Name of the TagType""" return core.BNTagTypeGetName(self.handle) @name.setter @@ -958,7 +958,7 @@ class TagType(object): @property def icon(self): - """Unicode str containing an emoji to be used as an icon""" + """Unicode str containing an emoji to be used as an icon""" return core.BNTagTypeGetIcon(self.handle) @icon.setter @@ -967,7 +967,7 @@ class TagType(object): @property def visible(self): - """Boolean for whether the tags of this type are visible""" + """Boolean for whether the tags of this type are visible""" return core.BNTagTypeGetVisible(self.handle) @visible.setter @@ -976,7 +976,7 @@ class TagType(object): @property def type(self): - """Type from enums.TagTypeType""" + """Type from enums.TagTypeType""" return core.BNTagTypeGetType(self.handle) @type.setter @@ -5856,3 +5856,5 @@ class StructuredDataView(object): def __len__(self): return self._structure.width + + """Name of the TagType""" \ No newline at end of file -- cgit v1.3.1