Skip to content

Commit fc1f3ed

Browse files
maliafzalmeta-codesync[bot]
authored andcommitted
1 parent 570eb1c commit fc1f3ed

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

torchrec/distributed/utils.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -781,7 +781,8 @@ def modify_input_for_feature_processor(
781781

782782
if is_collection:
783783
if hasattr(feature_processors, "pre_process_pipeline_input"):
784-
feature_processors.pre_process_pipeline_input(features) # pyre-ignore[29]
784+
# pyre-ignore[29]
785+
feature_processors.pre_process_pipeline_input(features)
785786
else:
786787
logging.info(
787788
f"[Feature Processor Pipeline] Skipping pre_process_pipeline_input for feature processor {feature_processors=}"

0 commit comments

Comments
 (0)