Skip to content

Commit

Permalink
move import
Browse files Browse the repository at this point in the history
  • Loading branch information
SigureMo committed Aug 4, 2024
1 parent 1fb01f6 commit e9489be
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions paddle/fluid/operators/generator/filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@
import re
from typing import TYPE_CHECKING

if TYPE_CHECKING:
from collections.abc import Sequence

from type_mapping import (
attr_types_map,
dense_input_types_map,
Expand All @@ -34,6 +31,9 @@
sr_output_types_map,
)

if TYPE_CHECKING:
from collections.abc import Sequence


def get_infer_var_type_func(op_name):
if op_name == "assign":
Expand Down

0 comments on commit e9489be

Please sign in to comment.