@@ -725,7 +725,6 @@ def id(self) -> typing.Optional[str]:
725
725
"""Return the unique id of the run"""
726
726
return self ._id
727
727
728
- @pydantic .validate_call
729
728
@skip_if_failed ("_aborted" , "_suppress_errors" , False )
730
729
@pydantic .validate_call
731
730
def reconnect (self , run_id : str ) -> bool :
@@ -766,7 +765,6 @@ def set_pid(self, pid: int) -> None:
766
765
"""
767
766
self ._pid = pid
768
767
769
- @pydantic .validate_call
770
768
@skip_if_failed ("_aborted" , "_suppress_errors" , False )
771
769
@pydantic .validate_call
772
770
def config (
@@ -870,7 +868,6 @@ def update_tags(self, tags: list[str]) -> bool:
870
868
871
869
return False
872
870
873
- @pydantic .validate_call
874
871
@skip_if_failed ("_aborted" , "_suppress_errors" , False )
875
872
@pydantic .validate_call
876
873
def log_event (self , message , timestamp : typing .Optional [str ] = None ) -> bool :
@@ -945,7 +942,6 @@ def _add_metrics_to_dispatch(
945
942
946
943
return True
947
944
948
- @pydantic .validate_call
949
945
@skip_if_failed ("_aborted" , "_suppress_errors" , False )
950
946
@pydantic .validate_call
951
947
def log_metrics (
@@ -1085,7 +1081,6 @@ def save_file(
1085
1081
# Register file
1086
1082
return self ._simvue .save_file (data ) is not None
1087
1083
1088
- @pydantic .validate_call
1089
1084
@skip_if_failed ("_aborted" , "_suppress_errors" , False )
1090
1085
@pydantic .validate_call
1091
1086
def save_directory (
@@ -1122,7 +1117,6 @@ def save_directory(
1122
1117
1123
1118
return True
1124
1119
1125
- @pydantic .validate_call
1126
1120
@skip_if_failed ("_aborted" , "_suppress_errors" , False )
1127
1121
@pydantic .validate_call
1128
1122
def save_all (
@@ -1276,7 +1270,6 @@ def set_folder_details(
1276
1270
1277
1271
return False
1278
1272
1279
- @pydantic .validate_call
1280
1273
@skip_if_failed ("_aborted" , "_suppress_errors" , False )
1281
1274
@pydantic .validate_call
1282
1275
def add_alerts (
@@ -1324,7 +1317,6 @@ def add_alerts(
1324
1317
1325
1318
return False
1326
1319
1327
- @pydantic .validate_call
1328
1320
@skip_if_failed ("_aborted" , "_suppress_errors" , None )
1329
1321
@pydantic .validate_call
1330
1322
def create_alert (
@@ -1486,7 +1478,6 @@ def create_alert(
1486
1478
1487
1479
return alert_id
1488
1480
1489
- @pydantic .validate_call
1490
1481
@skip_if_failed ("_aborted" , "_suppress_errors" , False )
1491
1482
@pydantic .validate_call
1492
1483
def log_alert (
0 commit comments