Skip to content

Commit baaba11

Browse files
committed
chore: linting/style changes
1 parent c5ef2a6 commit baaba11

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/zulip_write_only_proxy/_logging.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def logger_name_callsite(logger, method_name, event_dict):
1717
if not event_dict.get("logger_name"):
1818
logger_name = f"{event_dict.pop('module')}.{event_dict.pop('func_name')}"
1919
if not event_dict.pop("disable_name", False):
20-
event_dict["logger_name"] = logger_name.strip(".")
20+
event_dict["logger_name"] = logger_name.strip(".") # pyright: ignore[reportInvalidTypeForm]
2121

2222
return event_dict
2323

src/zulip_write_only_proxy/frontend/templates/index.html

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,5 @@
22

33
<!-- Content -->
44
{% block content %}
5-
<a hx-boost="false" class="btn" href="{{ url_for('auth') }}"
6-
>Login</a
7-
>
5+
<a hx-boost="false" class="btn" href="{{ url_for('auth') }}">Login</a>
86
{% endblock %}

0 commit comments

Comments
 (0)