From a3c46043b100d022afcf8b57251f6990bd9d80db Mon Sep 17 00:00:00 2001 From: Ti-Tai Wang Date: Mon, 4 Nov 2024 17:09:46 -0800 Subject: [PATCH] Fix CI (#1931) The from future import annotation in onnxscript/rewriter/testing.py was not set --- onnxscript/rewriter/testing.py | 1 + 1 file changed, 1 insertion(+) diff --git a/onnxscript/rewriter/testing.py b/onnxscript/rewriter/testing.py index 95b815515..7c8c5175e 100644 --- a/onnxscript/rewriter/testing.py +++ b/onnxscript/rewriter/testing.py @@ -1,5 +1,6 @@ # Copyright (c) Microsoft Corporation. # Licensed under the MIT License. +from __future__ import annotations from typing import Any