mirror of
https://github.com/apache/superset.git
synced 2026-04-21 09:04:38 +00:00
chore: upgrade black (#19410)
This commit is contained in:
@@ -168,14 +168,28 @@ prophet_df = DataFrame(
|
||||
|
||||
single_metric_df = DataFrame(
|
||||
{
|
||||
"dttm": to_datetime(["2019-01-01", "2019-01-01", "2019-01-02", "2019-01-02",]),
|
||||
"dttm": to_datetime(
|
||||
[
|
||||
"2019-01-01",
|
||||
"2019-01-01",
|
||||
"2019-01-02",
|
||||
"2019-01-02",
|
||||
]
|
||||
),
|
||||
"country": ["UK", "US", "UK", "US"],
|
||||
"sum_metric": [5, 6, 7, 8],
|
||||
}
|
||||
)
|
||||
multiple_metrics_df = DataFrame(
|
||||
{
|
||||
"dttm": to_datetime(["2019-01-01", "2019-01-01", "2019-01-02", "2019-01-02",]),
|
||||
"dttm": to_datetime(
|
||||
[
|
||||
"2019-01-01",
|
||||
"2019-01-01",
|
||||
"2019-01-02",
|
||||
"2019-01-02",
|
||||
]
|
||||
),
|
||||
"country": ["UK", "US", "UK", "US"],
|
||||
"sum_metric": [5, 6, 7, 8],
|
||||
"count_metric": [1, 2, 3, 4],
|
||||
|
||||
Reference in New Issue
Block a user