Skip to content

Commit

Permalink
flake8/linter cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
brifordwylie committed Dec 4, 2024
1 parent 63e15a8 commit adc3c40
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion applications/aws_dashboard/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@
current_dir = os.path.dirname(os.path.abspath(__file__))

# Set Plotly template
template_file = os.path.join(current_dir, "assets", "darkly_custom.json") if USE_DARK_THEME else os.path.join(current_dir, "assets", "flatly.json")
template_file = (
os.path.join(current_dir, "assets", "darkly_custom.json")
if USE_DARK_THEME
else os.path.join(current_dir, "assets", "flatly.json")
)
with open(template_file, "r") as f:
template = json.load(f)

Expand Down

0 comments on commit adc3c40

Please sign in to comment.