Improved readability of python code by adding/removing newlines, identation, etc.

This commit is contained in:
ChaoticByte 2023-02-11 22:14:01 +01:00
parent 0aa8c7f15b
commit 626f596cd3
5 changed files with 10 additions and 21 deletions

View file

@ -2,8 +2,8 @@ from django.conf import settings
from .models import Global
def app_version(request):
def app_version(request):
try:
global_message = Global.objects.get(pk="global_message").value_string
except Global.DoesNotExist: