@@ -20,12 +20,13 @@ class CICharField(CIText, CharField[_C]):
20
20
def __init__ (
21
21
self : CICharField [str ],
22
22
verbose_name : str | bytes | None = ...,
23
+ * ,
23
24
name : str | None = ...,
24
25
primary_key : bool = ...,
25
26
max_length : int | None = ...,
26
27
unique : bool = ...,
27
28
blank : bool = ...,
28
- null : Literal [False ] = ... ,
29
+ null : Literal [False ] = False ,
29
30
db_index : bool = ...,
30
31
default : Any = ...,
31
32
editable : bool = ...,
@@ -45,12 +46,13 @@ class CICharField(CIText, CharField[_C]):
45
46
def __init__ (
46
47
self : CICharField [str | None ],
47
48
verbose_name : str | bytes | None = ...,
49
+ * ,
48
50
name : str | None = ...,
49
51
primary_key : bool = ...,
50
52
max_length : int | None = ...,
51
53
unique : bool = ...,
52
54
blank : bool = ...,
53
- null : Literal [True ] = ... ,
55
+ null : Literal [True ],
54
56
db_index : bool = ...,
55
57
default : Any = ...,
56
58
editable : bool = ...,
@@ -74,12 +76,13 @@ class CIEmailField(CIText, EmailField[_C]):
74
76
def __init__ (
75
77
self : CIEmailField [str ],
76
78
verbose_name : str | bytes | None = ...,
79
+ * ,
77
80
name : str | None = ...,
78
81
primary_key : bool = ...,
79
82
max_length : int | None = ...,
80
83
unique : bool = ...,
81
84
blank : bool = ...,
82
- null : Literal [False ] = ... ,
85
+ null : Literal [False ] = False ,
83
86
db_index : bool = ...,
84
87
default : Any = ...,
85
88
editable : bool = ...,
@@ -99,12 +102,13 @@ class CIEmailField(CIText, EmailField[_C]):
99
102
def __init__ (
100
103
self : CIEmailField [str | None ],
101
104
verbose_name : str | bytes | None = ...,
105
+ * ,
102
106
name : str | None = ...,
103
107
primary_key : bool = ...,
104
108
max_length : int | None = ...,
105
109
unique : bool = ...,
106
110
blank : bool = ...,
107
- null : Literal [True ] = ... ,
111
+ null : Literal [True ],
108
112
db_index : bool = ...,
109
113
default : Any = ...,
110
114
editable : bool = ...,
@@ -128,12 +132,13 @@ class CITextField(CIText, TextField[_C]):
128
132
def __init__ (
129
133
self : CITextField [str ],
130
134
verbose_name : str | bytes | None = ...,
135
+ * ,
131
136
name : str | None = ...,
132
137
primary_key : bool = ...,
133
138
max_length : int | None = ...,
134
139
unique : bool = ...,
135
140
blank : bool = ...,
136
- null : Literal [False ] = ... ,
141
+ null : Literal [False ] = False ,
137
142
db_index : bool = ...,
138
143
default : Any = ...,
139
144
editable : bool = ...,
@@ -153,12 +158,13 @@ class CITextField(CIText, TextField[_C]):
153
158
def __init__ (
154
159
self : CITextField [str | None ],
155
160
verbose_name : str | bytes | None = ...,
161
+ * ,
156
162
name : str | None = ...,
157
163
primary_key : bool = ...,
158
164
max_length : int | None = ...,
159
165
unique : bool = ...,
160
166
blank : bool = ...,
161
- null : Literal [True ] = ... ,
167
+ null : Literal [True ],
162
168
db_index : bool = ...,
163
169
default : Any = ...,
164
170
editable : bool = ...,
0 commit comments