File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 1+ from typing import Dict , List , Set
2+
13# A set of classifier names
2- sorted_classifiers = [
4+ sorted_classifiers : List [ str ] = [
35 "Development Status :: 1 - Planning" ,
46 "Development Status :: 2 - Pre-Alpha" ,
57 "Development Status :: 3 - Alpha" ,
805807 "Typing :: Typed" ,
806808]
807809
808- classifiers = set (sorted_classifiers )
810+ classifiers : Set [ str ] = set (sorted_classifiers )
809811
810812
811813# A mapping from the deprecated classifier name to a list of zero or more valid
812814# classifiers that should replace it
813- deprecated_classifiers = {
815+ deprecated_classifiers : Dict [ str , List [ str ]] = {
814816 "Natural Language :: Ukranian" : ["Natural Language :: Ukrainian" ],
815817 "Topic :: Communications :: Chat :: AOL Instant Messenger" : [],
816818}
You can’t perform that action at this time.
0 commit comments