From 68ed36684185f7830cdd1fe8fe98b0e1970f1d1f Mon Sep 17 00:00:00 2001 From: RacerCodeQualityPyreMissingAnnotations Bot Date: Thu, 21 May 2026 11:01:34 -0700 Subject: [PATCH] Fix PYRE_MISSING_ANNOTATIONS issues in fbcode/HolisticTraceAnalysis/hta/common/execution_trace.py Reviewed By: fengxizhou Differential Revision: D105819123 --- hta/common/execution_trace.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hta/common/execution_trace.py b/hta/common/execution_trace.py index 17ab9b20..8a2b8adb 100644 --- a/hta/common/execution_trace.py +++ b/hta/common/execution_trace.py @@ -177,12 +177,12 @@ def map_func(node_id): elif column == "output_shapes": - def map_func(node_id): + def map_func(node_id) -> Any: return et.nodes[node_id].output_shapes elif column == "output_types": - def map_func(node_id): + def map_func(node_id) -> Any: return et.nodes[node_id].output_types elif column == "et_node_name":