Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
paulzierep committed Nov 1, 2023
1 parent f4ecf28 commit 0382ecc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/create_interactive_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ def generate_table(
classes=["display", "nowrap"],
index=False)

with open(template_path, "r") as template_path:
with open(template_path) as template_path:
template = template_path.read()

with open("temp_tools_table.html", "r") as table_path:
with open("temp_tools_table.html") as table_path:
table = table_path.read()

final_html_output = template.replace("COMMUNITY_TABLE", table)
Expand Down

0 comments on commit 0382ecc

Please sign in to comment.