Skip to content

Commit 64d75f1

Browse files
committed
Merge branch 'dev' into hotfix/add-missing-tests
2 parents 221c158 + 855f365 commit 64d75f1

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

simvue/run.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -725,7 +725,6 @@ def id(self) -> typing.Optional[str]:
725725
"""Return the unique id of the run"""
726726
return self._id
727727

728-
@pydantic.validate_call
729728
@skip_if_failed("_aborted", "_suppress_errors", False)
730729
@pydantic.validate_call
731730
def reconnect(self, run_id: str) -> bool:
@@ -766,7 +765,6 @@ def set_pid(self, pid: int) -> None:
766765
"""
767766
self._pid = pid
768767

769-
@pydantic.validate_call
770768
@skip_if_failed("_aborted", "_suppress_errors", False)
771769
@pydantic.validate_call
772770
def config(
@@ -870,7 +868,6 @@ def update_tags(self, tags: list[str]) -> bool:
870868

871869
return False
872870

873-
@pydantic.validate_call
874871
@skip_if_failed("_aborted", "_suppress_errors", False)
875872
@pydantic.validate_call
876873
def log_event(self, message, timestamp: typing.Optional[str] = None) -> bool:
@@ -945,7 +942,6 @@ def _add_metrics_to_dispatch(
945942

946943
return True
947944

948-
@pydantic.validate_call
949945
@skip_if_failed("_aborted", "_suppress_errors", False)
950946
@pydantic.validate_call
951947
def log_metrics(
@@ -1085,7 +1081,6 @@ def save_file(
10851081
# Register file
10861082
return self._simvue.save_file(data) is not None
10871083

1088-
@pydantic.validate_call
10891084
@skip_if_failed("_aborted", "_suppress_errors", False)
10901085
@pydantic.validate_call
10911086
def save_directory(
@@ -1122,7 +1117,6 @@ def save_directory(
11221117

11231118
return True
11241119

1125-
@pydantic.validate_call
11261120
@skip_if_failed("_aborted", "_suppress_errors", False)
11271121
@pydantic.validate_call
11281122
def save_all(
@@ -1276,7 +1270,6 @@ def set_folder_details(
12761270

12771271
return False
12781272

1279-
@pydantic.validate_call
12801273
@skip_if_failed("_aborted", "_suppress_errors", False)
12811274
@pydantic.validate_call
12821275
def add_alerts(
@@ -1324,7 +1317,6 @@ def add_alerts(
13241317

13251318
return False
13261319

1327-
@pydantic.validate_call
13281320
@skip_if_failed("_aborted", "_suppress_errors", None)
13291321
@pydantic.validate_call
13301322
def create_alert(
@@ -1486,7 +1478,6 @@ def create_alert(
14861478

14871479
return alert_id
14881480

1489-
@pydantic.validate_call
14901481
@skip_if_failed("_aborted", "_suppress_errors", False)
14911482
@pydantic.validate_call
14921483
def log_alert(

0 commit comments

Comments
 (0)