Greetings! I saw my first annotation mix-up with regards to Enum today:
https://stackoverflow.com/q/56532591/208880 #enum import: from enum import Enum # enum definition: class Status(Enum): on: 1 off: 2 My question for the group: Is this worth "fixing" or should I leave it alone? On the one hand it seems like an obvious error, but on the other I hate getting in the way of needs I haven't thought of. -- ~Ethan~ _______________________________________________ Python-Dev mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-dev.python.org/ Message archived at https://mail.python.org/archives/list/[email protected]/message/KFGYWLRPBSTST2K4QW5HRULF6EM6Q5F6/
