Skip to content

Commit

Permalink
restores py27 compatibility (take 9)
Browse files Browse the repository at this point in the history
  • Loading branch information
smirolo committed Jan 19, 2024
1 parent 9b1b9cc commit 4cf50a0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pages/urls/api/sequences.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@


urlpatterns = [
path('<slug:sequence>/<slug:user>',
EnumeratedProgressResetAPIView.as_view(),
name='api_progress_reset'),
path('<slug:sequence>/<int:rank>/<slug:user>',
LiveEventAttendanceAPIView.as_view(),
name='api_mark_attendance')
path('<slug:sequence>/<slug:user>',
EnumeratedProgressResetAPIView.as_view(),
name='api_progress_reset'),
]

0 comments on commit 4cf50a0

Please sign in to comment.