fix: fixed django40 warnings (#29641)
* fix: fixed django4 warnings Co-authored-by: UsamaSadiq <usama.sadiq@arbisoft.com>
This commit is contained in:
committed by
GitHub
parent
e8953398ac
commit
dd488a76d1
@@ -2,15 +2,11 @@
|
||||
Defines URLs for Calendar Sync.
|
||||
"""
|
||||
|
||||
|
||||
from django.conf.urls import url
|
||||
|
||||
from django.urls import path
|
||||
from .views.calendar_sync import CalendarSyncView
|
||||
|
||||
urlpatterns = [
|
||||
url(
|
||||
r'^calendar_sync$',
|
||||
CalendarSyncView.as_view(),
|
||||
name='openedx.calendar_sync',
|
||||
),
|
||||
path('calendar_sync', CalendarSyncView.as_view(),
|
||||
name='openedx.calendar_sync',
|
||||
),
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user