Skip to content

Commit

Permalink
fix pipeline, unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
odkhang committed Nov 14, 2024
1 parent 5061840 commit e52fa22
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
4 changes: 1 addition & 3 deletions src/pretalx/agenda/views/talk.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,9 +296,7 @@ def get(self, request, *args, **kwargs):
if not organizer or not event or not base_url:
return HttpResponse(status=403, content="missing_configuration")

check_payload = {
'user_email': request.user.email
}
check_payload = {"user_email": request.user.email}

# call to ticket to check if user order ticket yet or not
response = requests.post(
Expand Down
1 change: 0 additions & 1 deletion src/pretalx/common/templates/common/auth.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
{% load i18n %}
{% load static %}
{% load socialaccount %}
{% load socialapp_extras %}

{% include "common/forms/errors.html" %}
{% if no_form %}
Expand Down

0 comments on commit e52fa22

Please sign in to comment.