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
@@ -71,7 +71,7 @@ def histogram(
|
||||
|
||||
if len(groupby) == 0:
|
||||
# without grouping
|
||||
hist_dict = dict(zip(bin_edges_str, hist_values(df[column])))
|
||||
hist_dict = dict(zip(bin_edges_str, hist_values(df[column]), strict=False))
|
||||
histogram_df = DataFrame(hist_dict, index=[0])
|
||||
else:
|
||||
# with grouping
|
||||
|
||||
Reference in New Issue
Block a user