mirror of
https://github.com/apache/superset.git
synced 2026-04-19 08:04:53 +00:00
chore: python version to 3.11 (while supporting 3.10) (#31503)
This commit is contained in:
committed by
GitHub
parent
855011360a
commit
274aa143d3
@@ -59,7 +59,7 @@ def compare( # pylint: disable=too-many-arguments
|
||||
if len(source_columns) == 0:
|
||||
return df
|
||||
|
||||
for s_col, c_col in zip(source_columns, compare_columns):
|
||||
for s_col, c_col in zip(source_columns, compare_columns, strict=False):
|
||||
s_df = df.loc[:, [s_col]]
|
||||
s_df.rename(columns={s_col: "__intermediate"}, inplace=True)
|
||||
c_df = df.loc[:, [c_col]]
|
||||
|
||||
Reference in New Issue
Block a user