This will remove imports from __future__ that are no longer needed. https://docs.python.org/3.5/library/2to3.html#2to3fixer-future
11 lines
191 B
Python
11 lines
191 B
Python
"""
|
|
Urls for the django_comment_client.
|
|
"""
|
|
|
|
|
|
from django.conf.urls import include, url
|
|
|
|
urlpatterns = [
|
|
url(r'', include('lms.djangoapps.discussion.django_comment_client.base.urls')),
|
|
]
|