@@ -1390,66 +1390,77 @@ class ClassTypeHintMatch:
1390
1390
TypeHintMatch (
1391
1391
function_name = "supported_features" ,
1392
1392
return_type = "CoverEntityFeature" ,
1393
+ mandatory = True ,
1393
1394
),
1394
1395
TypeHintMatch (
1395
1396
function_name = "open_cover" ,
1396
1397
kwargs_type = "Any" ,
1397
1398
return_type = None ,
1398
1399
has_async_counterpart = True ,
1400
+ mandatory = True ,
1399
1401
),
1400
1402
TypeHintMatch (
1401
1403
function_name = "close_cover" ,
1402
1404
kwargs_type = "Any" ,
1403
1405
return_type = None ,
1404
1406
has_async_counterpart = True ,
1407
+ mandatory = True ,
1405
1408
),
1406
1409
TypeHintMatch (
1407
1410
function_name = "toggle" ,
1408
1411
kwargs_type = "Any" ,
1409
1412
return_type = None ,
1410
1413
has_async_counterpart = True ,
1414
+ mandatory = True ,
1411
1415
),
1412
1416
TypeHintMatch (
1413
1417
function_name = "set_cover_position" ,
1414
1418
kwargs_type = "Any" ,
1415
1419
return_type = None ,
1416
1420
has_async_counterpart = True ,
1421
+ mandatory = True ,
1417
1422
),
1418
1423
TypeHintMatch (
1419
1424
function_name = "stop_cover" ,
1420
1425
kwargs_type = "Any" ,
1421
1426
return_type = None ,
1422
1427
has_async_counterpart = True ,
1428
+ mandatory = True ,
1423
1429
),
1424
1430
TypeHintMatch (
1425
1431
function_name = "open_cover_tilt" ,
1426
1432
kwargs_type = "Any" ,
1427
1433
return_type = None ,
1428
1434
has_async_counterpart = True ,
1435
+ mandatory = True ,
1429
1436
),
1430
1437
TypeHintMatch (
1431
1438
function_name = "close_cover_tilt" ,
1432
1439
kwargs_type = "Any" ,
1433
1440
return_type = None ,
1434
1441
has_async_counterpart = True ,
1442
+ mandatory = True ,
1435
1443
),
1436
1444
TypeHintMatch (
1437
1445
function_name = "set_cover_tilt_position" ,
1438
1446
kwargs_type = "Any" ,
1439
1447
return_type = None ,
1440
1448
has_async_counterpart = True ,
1449
+ mandatory = True ,
1441
1450
),
1442
1451
TypeHintMatch (
1443
1452
function_name = "stop_cover_tilt" ,
1444
1453
kwargs_type = "Any" ,
1445
1454
return_type = None ,
1446
1455
has_async_counterpart = True ,
1456
+ mandatory = True ,
1447
1457
),
1448
1458
TypeHintMatch (
1449
1459
function_name = "toggle_tilt" ,
1450
1460
kwargs_type = "Any" ,
1451
1461
return_type = None ,
1452
1462
has_async_counterpart = True ,
1463
+ mandatory = True ,
1453
1464
),
1454
1465
],
1455
1466
),
0 commit comments