Skip to content

Commit 9a10ff6

Browse files
committed
fix python 3.10 incompatibility
1 parent 7eabca3 commit 9a10ff6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

robotmbt/visualise/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ def export_graph(self, dir: str = '', atest: bool = False) -> str | None:
286286
return None
287287

288288
@staticmethod
289-
def import_graph_from_file(file_path: str) -> TraceInfo:
289+
def import_graph_from_file(file_path: str):
290290
try:
291291
with open(file_path, "r") as f:
292292
traceinfo = jsonpickle.decode(f.read())

0 commit comments

Comments
 (0)