@@ -31,78 +31,78 @@ RUF012.py:25:26: RUF012 Mutable class attributes should be annotated with `typin
313127 | class_variable : ClassVar [list [int ]] = []
3232 |
3333
34- RUF012 .py :89 :38: RUF012 Mutable class attributes should be annotated with `typing .ClassVar `
35- |
36- 87 | class I (SQLModel ):
37- 88 | id : int
38- 89 | mutable_default : list [int ] = []
39- | ^^ RUF012
40- 90 |
41- 91 | from sqlmodel import SQLModel
42- |
34+ RUF012 .py :103 :38: RUF012 Mutable class attributes should be annotated with `typing .ClassVar `
35+ |
36+ 101 | class K (SQLModel ):
37+ 102 | id : int
38+ 103 | mutable_default : list [int ] = []
39+ | ^^ RUF012
40+ 104 |
41+ 105 | from sqlmodel import SQLModel
42+ |
4343
44- RUF012 .py :114 :36: RUF012 Mutable class attributes should be annotated with `typing .ClassVar `
44+ RUF012 .py :128 :36: RUF012 Mutable class attributes should be annotated with `typing .ClassVar `
4545 |
46- 112 | }
47- 113 |
48- 114 | mutable_default : ' list[int]' = []
46+ 126 | }
47+ 127 |
48+ 128 | mutable_default : ' list[int]' = []
4949 | ^^ RUF012
50- 115 | immutable_annotation : ' Sequence[int]' = []
51- 116 | without_annotation = []
50+ 129 | immutable_annotation : ' Sequence[int]' = []
51+ 130 | without_annotation = []
5252 |
5353
54- RUF012 .py :115 :44 : RUF012 Mutable class attributes should be annotated with `typing .ClassVar `
54+ RUF012 .py :129 :44 : RUF012 Mutable class attributes should be annotated with `typing .ClassVar `
5555 |
56- 114 | mutable_default : 'list [int ]' = []
57- 115 | immutable_annotation : 'Sequence [int ]'= []
56+ 128 | mutable_default : 'list [int ]' = []
57+ 129 | immutable_annotation : 'Sequence [int ]'= []
5858 | ^^ RUF012
59- 116 | without_annotation = []
60- 117 | class_variable : 'ClassVar [list [int ]]' = []
59+ 130 | without_annotation = []
60+ 131 | class_variable : 'ClassVar [list [int ]]' = []
6161 |
6262
63- RUF012 .py :116 :26: RUF012 Mutable class attributes should be annotated with `typing .ClassVar `
63+ RUF012 .py :130 :26: RUF012 Mutable class attributes should be annotated with `typing .ClassVar `
6464 |
65- 114 | mutable_default : 'list [int ]' = []
66- 115 | immutable_annotation : 'Sequence [int ]'= []
67- 116 | without_annotation = []
65+ 128 | mutable_default : 'list [int ]' = []
66+ 129 | immutable_annotation : 'Sequence [int ]'= []
67+ 130 | without_annotation = []
6868 | ^^ RUF012
69- 117 | class_variable : 'ClassVar [list [int ]]' = []
70- 118 | final_variable : 'Final [list [int ]]' = []
69+ 131 | class_variable : 'ClassVar [list [int ]]' = []
70+ 132 | final_variable : 'Final [list [int ]]' = []
7171 |
7272
73- RUF012 .py :117 :45: RUF012 Mutable class attributes should be annotated with `typing .ClassVar `
73+ RUF012 .py :131 :45: RUF012 Mutable class attributes should be annotated with `typing .ClassVar `
7474 |
75- 115 | immutable_annotation : 'Sequence [int ]'= []
76- 116 | without_annotation = []
77- 117 | class_variable : 'ClassVar [list [int ]]' = []
75+ 129 | immutable_annotation : 'Sequence [int ]'= []
76+ 130 | without_annotation = []
77+ 131 | class_variable : 'ClassVar [list [int ]]' = []
7878 | ^^ RUF012
79- 118 | final_variable : 'Final [list [int ]]' = []
80- 119 | class_variable_without_subscript : 'ClassVar ' = []
79+ 132 | final_variable : 'Final [list [int ]]' = []
80+ 133 | class_variable_without_subscript : 'ClassVar ' = []
8181 |
8282
83- RUF012 .py :118 :42: RUF012 Mutable class attributes should be annotated with `typing .ClassVar `
83+ RUF012 .py :132 :42: RUF012 Mutable class attributes should be annotated with `typing .ClassVar `
8484 |
85- 116 | without_annotation = []
86- 117 | class_variable : 'ClassVar [list [int ]]' = []
87- 118 | final_variable : 'Final [list [int ]]' = []
85+ 130 | without_annotation = []
86+ 131 | class_variable : 'ClassVar [list [int ]]' = []
87+ 132 | final_variable : 'Final [list [int ]]' = []
8888 | ^^ RUF012
89- 119 | class_variable_without_subscript : 'ClassVar ' = []
90- 120 | final_variable_without_subscript : 'Final ' = []
89+ 133 | class_variable_without_subscript : 'ClassVar ' = []
90+ 134 | final_variable_without_subscript : 'Final ' = []
9191 |
9292
93- RUF012 .py :119 :52: RUF012 Mutable class attributes should be annotated with `typing .ClassVar `
93+ RUF012 .py :133 :52: RUF012 Mutable class attributes should be annotated with `typing .ClassVar `
9494 |
95- 117 | class_variable : 'ClassVar [list [int ]]' = []
96- 118 | final_variable : 'Final [list [int ]]' = []
97- 119 | class_variable_without_subscript : 'ClassVar ' = []
95+ 131 | class_variable : 'ClassVar [list [int ]]' = []
96+ 132 | final_variable : 'Final [list [int ]]' = []
97+ 133 | class_variable_without_subscript : 'ClassVar ' = []
9898 | ^^ RUF012
99- 120 | final_variable_without_subscript : 'Final ' = []
99+ 134 | final_variable_without_subscript : 'Final ' = []
100100 |
101101
102- RUF012 .py :120 :49: RUF012 Mutable class attributes should be annotated with `typing .ClassVar `
102+ RUF012 .py :134 :49: RUF012 Mutable class attributes should be annotated with `typing .ClassVar `
103103 |
104- 118 | final_variable : 'Final [list [int ]]' = []
105- 119 | class_variable_without_subscript : 'ClassVar ' = []
106- 120 | final_variable_without_subscript : 'Final ' = []
104+ 132 | final_variable : 'Final [list [int ]]' = []
105+ 133 | class_variable_without_subscript : 'ClassVar ' = []
106+ 134 | final_variable_without_subscript : 'Final ' = []
107107 | ^^ RUF012
108108 |
0 commit comments