From 268183e5eeb7579fba3d137c20bdcf0bac385e7c Mon Sep 17 00:00:00 2001 From: Ardi Mirzaei Date: Wed, 24 Jan 2024 06:54:01 +1100 Subject: [PATCH] black linting --- dash/common.py | 6 ++++-- dash/pages/home.py | 20 +++++++++++++++----- dash/pages/search.py | 4 +--- 3 files changed, 20 insertions(+), 10 deletions(-) diff --git a/dash/common.py b/dash/common.py index 23edddb..91fa67e 100644 --- a/dash/common.py +++ b/dash/common.py @@ -399,7 +399,7 @@ def select_best_model(data_dict, CV_score_function="MSE"): def get_thumbnail_figure(data_dict, lg=12): if data_dict == None: return {} - + watermark_config = ( watermark_information() ) # Grab the watermark text and fontsize information @@ -700,7 +700,9 @@ def get_leaderboard_df(series_list, CV_score_function="MSE"): ) chosen_methods.append(model_name) except Exception as e: - print(f'{[series_title]} had the following error: {e}') # Usually missing forecasts + print( + f"{[series_title]} had the following error: {e}" + ) # Usually missing forecasts pass stats_raw = pd.DataFrame({"Method": chosen_methods}) diff --git a/dash/pages/home.py b/dash/pages/home.py index cdc521b..b58d390 100644 --- a/dash/pages/home.py +++ b/dash/pages/home.py @@ -110,7 +110,8 @@ def _featured_latest_news(feature_series_title): dbc.Col( [ html.H2( - "US " + "inflation shows strong signs of stabilisation".title(), + "US " + + "inflation shows strong signs of stabilisation".title(), ), html.A( html.H4("View all US forecasts"), @@ -127,7 +128,9 @@ def _featured_latest_news(feature_series_title): [ dcc.Graph( figure=get_thumbnail_figure( - get_forecast_data("US Personal Consumption Expenditures: Chain-type Price Index (% Change, 1 Year)"), + get_forecast_data( + "US Personal Consumption Expenditures: Chain-type Price Index (% Change, 1 Year)" + ), lg=8, ), config={"displayModeBar": False}, @@ -223,7 +226,9 @@ def _uk_snapshot(): [ dcc.Graph( figure=get_thumbnail_figure( - get_forecast_data("UK Inflation (RPI)"), + get_forecast_data( + "UK Inflation (RPI)" + ), lg=8, ), config={"displayModeBar": False}, @@ -276,6 +281,7 @@ def _link_search(): ] ) + def _au_snapshot(): return [ dbc.Row( @@ -283,7 +289,9 @@ def _au_snapshot(): dbc.Col( [ html.H2( - "Have " + "AU" +" house prices reached the bottom?".title() + "Have " + + "AU" + + " house prices reached the bottom?".title() ), html.A( html.H4("View all Australian forecasts"), @@ -300,7 +308,9 @@ def _au_snapshot(): [ dcc.Graph( figure=get_thumbnail_figure( - get_forecast_data("Australian (Sydney) Change in House Prices"), + get_forecast_data( + "Australian (Sydney) Change in House Prices" + ), lg=8, ), config={"displayModeBar": False}, diff --git a/dash/pages/search.py b/dash/pages/search.py index e171689..7b4afde 100644 --- a/dash/pages/search.py +++ b/dash/pages/search.py @@ -391,9 +391,7 @@ def filter_results(**kwargs): for item_title in unique_series_titles[0:show_num]: try: - series_data = get_forecast_data( - item_title - ) + series_data = get_forecast_data(item_title) if series_data == None: raise FileNotFoundError