Skip to content

Commit

Permalink
Apply residual automated ruff formatting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
wjrm500 committed Dec 13, 2024
1 parent 6e361cb commit 8b5218b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
8 changes: 7 additions & 1 deletion app/export_config/generate_fund_round_html.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,10 @@ def generate_all_round_html(round_id, base_output_dir=None):
html_content = frontend_html_prefix
html_content += print_html(print_data)
html_content += frontend_html_suffix
write_config(html_content, f"{fund.short_name.casefold()}_{round.short_name.casefold()}", round.short_name, "html", base_output_dir)
write_config(
html_content,
f"{fund.short_name.casefold()}_{round.short_name.casefold()}",
round.short_name,
"html",
base_output_dir,
)
1 change: 0 additions & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ def build_govuk_assets(static_dist_root="app/static/dist"):
cwd = os.getcwd()
os.chdir(DIST_PATH)
for css_file in glob.glob("*.css"):

# Read in the file
with open(css_file, "r") as file:
filedata = file.read()
Expand Down
1 change: 0 additions & 1 deletion config/envs/unit_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@

@configclass
class UnitTestConfig(Config):

# Logging
FSD_LOG_LEVEL = logging.DEBUG

Expand Down

0 comments on commit 8b5218b

Please sign in to comment.