@@ -19,6 +19,7 @@ def _get_kwargs(
1919 string_with_num : str = "1" ,
2020 date_prop : datetime .date = isoparse ("1010-10-10" ).date (),
2121 float_prop : float = 3.14 ,
22+ float_with_int : float = 3.0 ,
2223 int_prop : int = 7 ,
2324 boolean_prop : bool = False ,
2425 list_prop : List [AnEnum ],
@@ -39,6 +40,8 @@ def _get_kwargs(
3940
4041 params ["float_prop" ] = float_prop
4142
43+ params ["float_with_int" ] = float_with_int
44+
4245 params ["int_prop" ] = int_prop
4346
4447 params ["boolean_prop" ] = boolean_prop
@@ -117,6 +120,7 @@ def sync_detailed(
117120 string_with_num : str = "1" ,
118121 date_prop : datetime .date = isoparse ("1010-10-10" ).date (),
119122 float_prop : float = 3.14 ,
123+ float_with_int : float = 3.0 ,
120124 int_prop : int = 7 ,
121125 boolean_prop : bool = False ,
122126 list_prop : List [AnEnum ],
@@ -133,6 +137,7 @@ def sync_detailed(
133137 string_with_num (str): Default: '1'.
134138 date_prop (datetime.date): Default: isoparse('1010-10-10').date().
135139 float_prop (float): Default: 3.14.
140+ float_with_int (float): Default: 3.0.
136141 int_prop (int): Default: 7.
137142 boolean_prop (bool): Default: False.
138143 list_prop (List[AnEnum]):
@@ -155,6 +160,7 @@ def sync_detailed(
155160 string_with_num = string_with_num ,
156161 date_prop = date_prop ,
157162 float_prop = float_prop ,
163+ float_with_int = float_with_int ,
158164 int_prop = int_prop ,
159165 boolean_prop = boolean_prop ,
160166 list_prop = list_prop ,
@@ -179,6 +185,7 @@ def sync(
179185 string_with_num : str = "1" ,
180186 date_prop : datetime .date = isoparse ("1010-10-10" ).date (),
181187 float_prop : float = 3.14 ,
188+ float_with_int : float = 3.0 ,
182189 int_prop : int = 7 ,
183190 boolean_prop : bool = False ,
184191 list_prop : List [AnEnum ],
@@ -195,6 +202,7 @@ def sync(
195202 string_with_num (str): Default: '1'.
196203 date_prop (datetime.date): Default: isoparse('1010-10-10').date().
197204 float_prop (float): Default: 3.14.
205+ float_with_int (float): Default: 3.0.
198206 int_prop (int): Default: 7.
199207 boolean_prop (bool): Default: False.
200208 list_prop (List[AnEnum]):
@@ -218,6 +226,7 @@ def sync(
218226 string_with_num = string_with_num ,
219227 date_prop = date_prop ,
220228 float_prop = float_prop ,
229+ float_with_int = float_with_int ,
221230 int_prop = int_prop ,
222231 boolean_prop = boolean_prop ,
223232 list_prop = list_prop ,
@@ -236,6 +245,7 @@ async def asyncio_detailed(
236245 string_with_num : str = "1" ,
237246 date_prop : datetime .date = isoparse ("1010-10-10" ).date (),
238247 float_prop : float = 3.14 ,
248+ float_with_int : float = 3.0 ,
239249 int_prop : int = 7 ,
240250 boolean_prop : bool = False ,
241251 list_prop : List [AnEnum ],
@@ -252,6 +262,7 @@ async def asyncio_detailed(
252262 string_with_num (str): Default: '1'.
253263 date_prop (datetime.date): Default: isoparse('1010-10-10').date().
254264 float_prop (float): Default: 3.14.
265+ float_with_int (float): Default: 3.0.
255266 int_prop (int): Default: 7.
256267 boolean_prop (bool): Default: False.
257268 list_prop (List[AnEnum]):
@@ -274,6 +285,7 @@ async def asyncio_detailed(
274285 string_with_num = string_with_num ,
275286 date_prop = date_prop ,
276287 float_prop = float_prop ,
288+ float_with_int = float_with_int ,
277289 int_prop = int_prop ,
278290 boolean_prop = boolean_prop ,
279291 list_prop = list_prop ,
@@ -296,6 +308,7 @@ async def asyncio(
296308 string_with_num : str = "1" ,
297309 date_prop : datetime .date = isoparse ("1010-10-10" ).date (),
298310 float_prop : float = 3.14 ,
311+ float_with_int : float = 3.0 ,
299312 int_prop : int = 7 ,
300313 boolean_prop : bool = False ,
301314 list_prop : List [AnEnum ],
@@ -312,6 +325,7 @@ async def asyncio(
312325 string_with_num (str): Default: '1'.
313326 date_prop (datetime.date): Default: isoparse('1010-10-10').date().
314327 float_prop (float): Default: 3.14.
328+ float_with_int (float): Default: 3.0.
315329 int_prop (int): Default: 7.
316330 boolean_prop (bool): Default: False.
317331 list_prop (List[AnEnum]):
@@ -336,6 +350,7 @@ async def asyncio(
336350 string_with_num = string_with_num ,
337351 date_prop = date_prop ,
338352 float_prop = float_prop ,
353+ float_with_int = float_with_int ,
339354 int_prop = int_prop ,
340355 boolean_prop = boolean_prop ,
341356 list_prop = list_prop ,
0 commit comments