GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

Issues (173)

kakaravaara/settings/prod.py (43 issues)

1
from kakaravaara.settings.base import *
0 ignored issues
show
PARLER_DEFAULT_LANGUAGE_CODE was imported with wildcard, but is not used.
Loading history...
DATABASES was imported with wildcard, but is not used.
Loading history...
USE_L10N was imported with wildcard, but is not used.
Loading history...
REST_FRAMEWORK was imported with wildcard, but is not used.
Loading history...
LOGGING was imported with wildcard, but is not used.
Loading history...
SHOOP_CHECKOUT_VIEW_SPEC was imported with wildcard, but is not used.
Loading history...
SHOOP_BASKET_ORDER_CREATOR_SPEC was imported with wildcard, but is not used.
Loading history...
ROOT_URLCONF was imported with wildcard, but is not used.
Loading history...
PARLER_LANGUAGES was imported with wildcard, but is not used.
Loading history...
BASE_CLASSES was imported with wildcard, but is not used.
Loading history...
os was imported with wildcard, but is not used.
Loading history...
USE_TZ was imported with wildcard, but is not used.
Loading history...
PROJECT_APPS was imported with wildcard, but is not used.
Loading history...
MIDDLEWARE_CLASSES was imported with wildcard, but is not used.
Loading history...
SESSION_SERIALIZER was imported with wildcard, but is not used.
Loading history...
SHOOP_ORDER_KNOWN_EXTRA_DATA_KEYS was imported with wildcard, but is not used.
Loading history...
LOCALE_PATHS was imported with wildcard, but is not used.
Loading history...
SHOOP_APPS was imported with wildcard, but is not used.
Loading history...
LANGUAGE_CODE was imported with wildcard, but is not used.
Loading history...
SHOOP_PRICING_MODULE was imported with wildcard, but is not used.
Loading history...
MEDIA_URL was imported with wildcard, but is not used.
Loading history...
STATIC_URL was imported with wildcard, but is not used.
Loading history...
STATIC_ROOT was imported with wildcard, but is not used.
Loading history...
BASE_DIR was imported with wildcard, but is not used.
Loading history...
SHOOP_ENABLED_ADDONS_FILE was imported with wildcard, but is not used.
Loading history...
TEMPLATES was imported with wildcard, but is not used.
Loading history...
add_enabled_addons was imported with wildcard, but is not used.
Loading history...
LOGIN_REDIRECT_URL was imported with wildcard, but is not used.
Loading history...
RESERVABLE_SEARCH_VISIBLE_ATTRIBUTES was imported with wildcard, but is not used.
Loading history...
LANGUAGES was imported with wildcard, but is not used.
Loading history...
SHOOP_MIDDLEWARE was imported with wildcard, but is not used.
Loading history...
INSTALLED_APPS was imported with wildcard, but is not used.
Loading history...
EMAIL_BACKEND was imported with wildcard, but is not used.
Loading history...
TEMPLATE_CONTEXT_PROCESSORS was imported with wildcard, but is not used.
Loading history...
WSGI_APPLICATION was imported with wildcard, but is not used.
Loading history...
USE_I18N was imported with wildcard, but is not used.
Loading history...
MEDIA_ROOT was imported with wildcard, but is not used.
Loading history...
SHOOP_ADDRESS_HOME_COUNTRY was imported with wildcard, but is not used.
Loading history...
SHOOP_BASKET_CLASS_SPEC was imported with wildcard, but is not used.
Loading history...
PREREQ_APPS was imported with wildcard, but is not used.
Loading history...
TIME_ZONE was imported with wildcard, but is not used.
Loading history...
KAKARAVAARA_SITE_URL was imported with wildcard, but is not used.
Loading history...
2
3
# Quick-start development settings - unsuitable for production
4
# See https://docs.djangoproject.com/en/1.8/howto/deployment/checklist/
5
6
# SECURITY WARNING: keep the secret key used in production secret!
7
# SECRET_KEY = ''
8
9
# SECURITY WARNING: don't run with debug turned on in production!
10
DEBUG = False
11
12
ALLOWED_HOSTS = ["kakaravaara.fi"]
13
14
try:
15
    from kakaravaara.settings.local import *
0 ignored issues
show
The name local does not seem to exist in module kakaravaara.settings.
Loading history...
16
except ImportError:
17
    pass
18