chore: upgrade black (#19410)

This commit is contained in:
Ville Brofeldt
2022-03-29 20:03:09 +03:00
committed by GitHub
parent 816a2c3e1e
commit a619cb4ea9
204 changed files with 2125 additions and 608 deletions

View File

@@ -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],