diff options
| author | Jordan Wiens <jordan@psifertex.com> | 2019-09-26 14:49:24 -0400 |
|---|---|---|
| committer | Jordan Wiens <jordan@psifertex.com> | 2019-09-26 14:49:24 -0400 |
| commit | d8f83e6bd34d4a533a404489ed63a45385ba7ad8 (patch) | |
| tree | 946873c350f331492f781a48bc70271e8cda8f88 /python | |
| parent | 3beecdec38e36f51bd3d9267a74c30410030c02c (diff) | |
correct invalid documentation
Diffstat (limited to 'python')
| -rw-r--r-- | python/binaryview.py | 10 |
1 files changed, 6 insertions, 4 deletions
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 |
