Skip to content

Commit

Permalink
Fix uninitialized member failure in the COM browser (mhammond#1894)
Browse files Browse the repository at this point in the history
  • Loading branch information
CristiFati committed Jun 9, 2022
1 parent f7f12ec commit e1c0237
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion com/win32com/client/combrowse.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

class HLIRoot(browser.HLIPythonObject):
def __init__(self, title):
self.name = title
super().__init__(name=title)

def GetSubList(self):
return [
Expand Down

0 comments on commit e1c0237

Please sign in to comment.