@@ -19,6 +19,7 @@ def _get_kwargs(
19
19
string_with_num : str = "1" ,
20
20
date_prop : datetime .date = isoparse ("1010-10-10" ).date (),
21
21
float_prop : float = 3.14 ,
22
+ float_with_int : float = 3.0 ,
22
23
int_prop : int = 7 ,
23
24
boolean_prop : bool = False ,
24
25
list_prop : List [AnEnum ],
@@ -39,6 +40,8 @@ def _get_kwargs(
39
40
40
41
params ["float_prop" ] = float_prop
41
42
43
+ params ["float_with_int" ] = float_with_int
44
+
42
45
params ["int_prop" ] = int_prop
43
46
44
47
params ["boolean_prop" ] = boolean_prop
@@ -117,6 +120,7 @@ def sync_detailed(
117
120
string_with_num : str = "1" ,
118
121
date_prop : datetime .date = isoparse ("1010-10-10" ).date (),
119
122
float_prop : float = 3.14 ,
123
+ float_with_int : float = 3.0 ,
120
124
int_prop : int = 7 ,
121
125
boolean_prop : bool = False ,
122
126
list_prop : List [AnEnum ],
@@ -133,6 +137,7 @@ def sync_detailed(
133
137
string_with_num (str): Default: '1'.
134
138
date_prop (datetime.date): Default: isoparse('1010-10-10').date().
135
139
float_prop (float): Default: 3.14.
140
+ float_with_int (float): Default: 3.0.
136
141
int_prop (int): Default: 7.
137
142
boolean_prop (bool): Default: False.
138
143
list_prop (List[AnEnum]):
@@ -155,6 +160,7 @@ def sync_detailed(
155
160
string_with_num = string_with_num ,
156
161
date_prop = date_prop ,
157
162
float_prop = float_prop ,
163
+ float_with_int = float_with_int ,
158
164
int_prop = int_prop ,
159
165
boolean_prop = boolean_prop ,
160
166
list_prop = list_prop ,
@@ -179,6 +185,7 @@ def sync(
179
185
string_with_num : str = "1" ,
180
186
date_prop : datetime .date = isoparse ("1010-10-10" ).date (),
181
187
float_prop : float = 3.14 ,
188
+ float_with_int : float = 3.0 ,
182
189
int_prop : int = 7 ,
183
190
boolean_prop : bool = False ,
184
191
list_prop : List [AnEnum ],
@@ -195,6 +202,7 @@ def sync(
195
202
string_with_num (str): Default: '1'.
196
203
date_prop (datetime.date): Default: isoparse('1010-10-10').date().
197
204
float_prop (float): Default: 3.14.
205
+ float_with_int (float): Default: 3.0.
198
206
int_prop (int): Default: 7.
199
207
boolean_prop (bool): Default: False.
200
208
list_prop (List[AnEnum]):
@@ -218,6 +226,7 @@ def sync(
218
226
string_with_num = string_with_num ,
219
227
date_prop = date_prop ,
220
228
float_prop = float_prop ,
229
+ float_with_int = float_with_int ,
221
230
int_prop = int_prop ,
222
231
boolean_prop = boolean_prop ,
223
232
list_prop = list_prop ,
@@ -236,6 +245,7 @@ async def asyncio_detailed(
236
245
string_with_num : str = "1" ,
237
246
date_prop : datetime .date = isoparse ("1010-10-10" ).date (),
238
247
float_prop : float = 3.14 ,
248
+ float_with_int : float = 3.0 ,
239
249
int_prop : int = 7 ,
240
250
boolean_prop : bool = False ,
241
251
list_prop : List [AnEnum ],
@@ -252,6 +262,7 @@ async def asyncio_detailed(
252
262
string_with_num (str): Default: '1'.
253
263
date_prop (datetime.date): Default: isoparse('1010-10-10').date().
254
264
float_prop (float): Default: 3.14.
265
+ float_with_int (float): Default: 3.0.
255
266
int_prop (int): Default: 7.
256
267
boolean_prop (bool): Default: False.
257
268
list_prop (List[AnEnum]):
@@ -274,6 +285,7 @@ async def asyncio_detailed(
274
285
string_with_num = string_with_num ,
275
286
date_prop = date_prop ,
276
287
float_prop = float_prop ,
288
+ float_with_int = float_with_int ,
277
289
int_prop = int_prop ,
278
290
boolean_prop = boolean_prop ,
279
291
list_prop = list_prop ,
@@ -296,6 +308,7 @@ async def asyncio(
296
308
string_with_num : str = "1" ,
297
309
date_prop : datetime .date = isoparse ("1010-10-10" ).date (),
298
310
float_prop : float = 3.14 ,
311
+ float_with_int : float = 3.0 ,
299
312
int_prop : int = 7 ,
300
313
boolean_prop : bool = False ,
301
314
list_prop : List [AnEnum ],
@@ -312,6 +325,7 @@ async def asyncio(
312
325
string_with_num (str): Default: '1'.
313
326
date_prop (datetime.date): Default: isoparse('1010-10-10').date().
314
327
float_prop (float): Default: 3.14.
328
+ float_with_int (float): Default: 3.0.
315
329
int_prop (int): Default: 7.
316
330
boolean_prop (bool): Default: False.
317
331
list_prop (List[AnEnum]):
@@ -336,6 +350,7 @@ async def asyncio(
336
350
string_with_num = string_with_num ,
337
351
date_prop = date_prop ,
338
352
float_prop = float_prop ,
353
+ float_with_int = float_with_int ,
339
354
int_prop = int_prop ,
340
355
boolean_prop = boolean_prop ,
341
356
list_prop = list_prop ,
0 commit comments