Skip to content

Commit

Permalink
'Refactored by Sourcery'
Browse files Browse the repository at this point in the history
  • Loading branch information
Sourcery AI committed Feb 4, 2022
1 parent 9d6ba03 commit 47cead8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion conreq/_core/pwa/apps.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
""" Settings required by django-app. """



from django.apps import AppConfig
from django.conf import settings
from django.shortcuts import resolve_url as _resolve
Expand All @@ -10,6 +11,8 @@
resolve_url = lazy(_resolve, str)




class PwaConfig(AppConfig):
name = "conreq._core.pwa"

Expand All @@ -26,7 +29,7 @@ class PwaConfig(AppConfig):
app_status_bar_color = "default"
app_icons = [
{
"src": settings.BASE_URL + "static/conreq/icons/standard.png",
"src": f'{settings.BASE_URL}static/conreq/icons/standard.png',
"sizes": "512x512",
"purpose": "any",
},
Expand All @@ -37,6 +40,7 @@ class PwaConfig(AppConfig):
},
]


app_icons_apple = [
{
"src": f"{settings.BASE_URL}static/conreq/icons/apple-touch-icon.png",
Expand Down

0 comments on commit 47cead8

Please sign in to comment.