src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Imports/ImportsEnums.py

branch
eric7
changeset 9221
bf71ee032bb4
parent 9209
b99e7fd55fd3
child 9480
107aca8932ac
equal deleted inserted replaced
9220:e9e7eca7efee 9221:bf71ee032bb4
16 16
17 class GroupEnum(enum.IntEnum): 17 class GroupEnum(enum.IntEnum):
18 """ 18 """
19 Class representing the various import groups. 19 Class representing the various import groups.
20 """ 20 """
21
21 FUTURE = 1 22 FUTURE = 1
22 STDLIB = 2 23 STDLIB = 2
23 THIRD_PARTY = 3 24 THIRD_PARTY = 3
24 APPLICATION = 4 25 APPLICATION = 4
25 26
26 27
27 class NodeTypeEnum(enum.IntEnum): 28 class NodeTypeEnum(enum.IntEnum):
28 """ 29 """
29 Class representing the import node types. 30 Class representing the import node types.
30 """ 31 """
32
31 IMPORT = 1 33 IMPORT = 1
32 IMPORT_FROM = 2 34 IMPORT_FROM = 2

eric ide

mercurial