Skip to content

Commit

Permalink
Black
Browse files Browse the repository at this point in the history
  • Loading branch information
faucomte97 committed Aug 27, 2024
1 parent bfc72d9 commit 03b86fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions example_project/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
from portal import urls as portal_urls

from game import urls as game_urls
from game import python_den_urls
from game import python_den_urls

admin.autodiscover()

urlpatterns = [
url(r"^", include(portal_urls)),
path("administration/", admin.site.urls),
url(r"^rapidrouter/", include(game_urls)),
url(r"^pythonden/", include(python_den_urls))
url(r"^pythonden/", include(python_den_urls)),
]

0 comments on commit 03b86fa

Please sign in to comment.