Skip to content

Commit e02db80

Browse files
committed
move type: ignore annotation
1 parent 898e394 commit e02db80

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/snowflake/snowpark/_internal/analyzer/select_statement.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -673,8 +673,8 @@ def children_plan_nodes(self) -> List[Union["Selectable", SnowflakePlan]]:
673673
@SnowflakePlan.Decorator.wrap_exception
674674
def _analyze_attributes(
675675
sql: str,
676-
session: "snowflake.snowpark.session.Session",
677-
dataframe_uuid: Optional[str] = None, # type: ignore
676+
session: "snowflake.snowpark.session.Session", # type: ignore
677+
dataframe_uuid: Optional[str] = None,
678678
query_params: Optional[Sequence[Any]] = None,
679679
) -> List[Attribute]:
680680
return analyze_attributes(sql, session, dataframe_uuid, query_params)

0 commit comments

Comments
 (0)