Skip to content

Commit

Permalink
Fix a typo in ATSPI ComboBoxWrapper.text doc string
Browse files Browse the repository at this point in the history
  • Loading branch information
airelil committed Jan 31, 2020
1 parent 4d49346 commit 39e20e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pywinauto/controls/atspi_controls.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def is_expanded(self):
return self.children()[0].is_visible()

def texts(self):
"""Get texts of all items in in the control as array"""
"""Get texts of all items in the control as list"""
combo_box_container = self.children()[0]
texts = []
for el in combo_box_container.children():
Expand Down

0 comments on commit 39e20e9

Please sign in to comment.