Skip to content
Snippets Groups Projects
Commit 11d62eea authored by fu2662cw's avatar fu2662cw :speech_balloon:
Browse files

Fix Linter Issues in existing code

parent ac8d3f81
No related branches found
No related tags found
No related merge requests found
""" Here is the place to register the Models to be seen in the admin interface """
from django.contrib import admin
# Register your models here.
from .models import Sport
admin.site.register(Sport)
""" Application Configuration for the quiz app """
from django.apps import AppConfig
class QuizConfig(AppConfig):
"""Application Config for the quiz app """
default_auto_field = 'django.db.models.BigAutoField'
name = 'quiz'
from django.shortcuts import render
""" Defines the views for the quiz app """
# Create your views here.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment