robertlugg / easygui

easygui for Python
http://easygui.readthedocs.org/en/master/
BSD 3-Clause "New" or "Revised" License
455 stars 114 forks source link

Fix whitespace typo in choice_box.py #171

Closed benduckwdesign closed 3 years ago

benduckwdesign commented 4 years ago

Fix whitespace typo in choice_box.py. Might fix issues with special buttons not getting created if there were any.

spyoungtech commented 4 years ago

Just as an FYI, it is legal syntax to have whitespace between the . and the attribute. You can even have whitespace between the object identifier and the .

>>> import sys
>>> sys . platform
'darwin'

It just looks a little wonky :-)

asweigart commented 3 years ago

This looks good to merge.