File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change 2
2
3
3
KTH101 = (
4
4
"KTH101 "
5
- "Use abstract type hint by `collections.abc.Iterable` or "
6
- "`collections.abc.Sequence` "
7
- "instead of concrete type hint `list`"
5
+ "Type hint with abstract type `collections.abc.Iterable` or "
6
+ "`collections.abc.Sequence`, "
7
+ "instead of concrete type `list`"
8
8
)
9
9
KTH102 = (
10
10
"KTH102 "
11
- "Use abstract type hint by `collections.abc.Iterable` or "
12
- "`collections.abc.Sequence` "
13
- "instead of concrete type hint `tuple`"
11
+ "Type hint with abstract type `collections.abc.Iterable` or "
12
+ "`collections.abc.Sequence`, "
13
+ "instead of concrete type `tuple`"
14
14
)
15
15
KTH103 = (
16
16
"KTH103 "
17
- "Use abstract type hint by `collections.abc.Iterable` "
18
- "instead of concrete type hint `set`"
17
+ "Type hint with abstract type `collections.abc.Iterable`"
18
+ "instead of concrete type `set`"
19
19
)
20
20
KTH104 = (
21
21
"KTH104 "
22
- "Use abstract type hint by `collections.abc.Iterable` "
23
- "instead of concrete type hint `dict`"
22
+ "Type hint with abstract type `collections.abc.Iterable`"
23
+ "instead of concrete type `dict`"
24
24
)
25
25
26
26
LineNumber = int
You can’t perform that action at this time.
0 commit comments