Skip to content

Commit

Permalink
chore: linting/style changes
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertRosca committed Sep 24, 2024
1 parent c5ef2a6 commit baaba11
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/zulip_write_only_proxy/_logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def logger_name_callsite(logger, method_name, event_dict):
if not event_dict.get("logger_name"):
logger_name = f"{event_dict.pop('module')}.{event_dict.pop('func_name')}"
if not event_dict.pop("disable_name", False):
event_dict["logger_name"] = logger_name.strip(".")
event_dict["logger_name"] = logger_name.strip(".") # pyright: ignore[reportInvalidTypeForm]

return event_dict

Expand Down
4 changes: 1 addition & 3 deletions src/zulip_write_only_proxy/frontend/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,5 @@

<!-- Content -->
{% block content %}
<a hx-boost="false" class="btn" href="{{ url_for('auth') }}"
>Login</a
>
<a hx-boost="false" class="btn" href="{{ url_for('auth') }}">Login</a>
{% endblock %}

0 comments on commit baaba11

Please sign in to comment.