From 19ad26170b0e996a013b617199b5f354dc1a8fc3 Mon Sep 17 00:00:00 2001 From: Jah-yee <166608075+Jah-yee@users.noreply.github.com> Date: Tue, 30 Jun 2026 19:24:43 +0800 Subject: [PATCH] fix: correct occured->occurred typo in error message (pytorch_builder.py) --- tensorwatch/model_graph/hiddenlayer/pytorch_builder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorwatch/model_graph/hiddenlayer/pytorch_builder.py b/tensorwatch/model_graph/hiddenlayer/pytorch_builder.py index 43a80b8..30ed57a 100644 --- a/tensorwatch/model_graph/hiddenlayer/pytorch_builder.py +++ b/tensorwatch/model_graph/hiddenlayer/pytorch_builder.py @@ -114,7 +114,7 @@ def import_graph(hl_graph, model, args, input_names=None, verbose=False): torch_graph = trace.graph except RuntimeError as e: print(e) - print('Error occured when creating jit trace for model.') + print('Error occurred when creating jit trace for model.') raise e # Dump list of nodes (DEBUG only)