We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16c4981 commit 4ed627aCopy full SHA for 4ed627a
com/win32com/client/build.py
@@ -70,7 +70,7 @@ class NotSupportedException(Exception):
70
71
72
class MapEntry:
73
- "Simple holder for named attibutes - items in a map."
+ """Simple holder for named attributes - items in a map."""
74
75
def __init__(
76
self,
@@ -92,9 +92,8 @@ def __init__(
92
self.doc = doc
93
self.resultCLSID = resultCLSID
94
self.resultDocumentation = resultDoc
95
- self.wasProperty = (
96
- 0 # Have I been transformed into a function so I can pass args?
97
- )
+ self.wasProperty = 0
+ """Has this MapEntry been transformed into a function so it can pass args?"""
98
self.hidden = hidden
99
100
def __repr__(self):
0 commit comments