Skip to content

Commit

Permalink
ui/css/__init__.py: Fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
mborgerson committed Feb 23, 2024
1 parent ea82b08 commit a3d8f4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion angrmanagement/ui/css/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def rebuild():
try:
with open(base_css_path, encoding="utf-8") as f:
css = f.read()
except Exception: # pylint: disable=braod-except
except Exception: # pylint: disable=broad-except
log.warning("Failed to load base theme at %s", base_css_path)
css = ""

Expand Down

0 comments on commit a3d8f4a

Please sign in to comment.