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)

reservable_pricing/urls.py (3 issues)

Labels
Severity
1
from django.conf.urls import url, patterns
2
3
from reservable_pricing.views import PeriodPricingModifierListView, PeriodPricingModifierEditView
4
5
6
urlpatterns = patterns(
7
    '',
8
    url(r"^sa/pricing/modifiers/period/(?P<pk>\d+)/$",
9
        PeriodPricingModifierEditView.as_view(), name="modifiers.edit"),
0 ignored issues
show
The Class PeriodPricingModifierEditView does not seem to have a member named as_view.

This check looks for calls to members that are non-existent. These calls will fail.

The member could have been renamed or removed.

Loading history...
10
    url(r"^sa/pricing/modifiers/period/new/$",
11
        PeriodPricingModifierEditView.as_view(), name="modifiers.new"),
0 ignored issues
show
The Class PeriodPricingModifierEditView does not seem to have a member named as_view.

This check looks for calls to members that are non-existent. These calls will fail.

The member could have been renamed or removed.

Loading history...
12
    url(r"^sa/pricing/modifiers/period/",
13
        PeriodPricingModifierListView.as_view(), name="modifiers.list"),
0 ignored issues
show
The Class PeriodPricingModifierListView does not seem to have a member named as_view.

This check looks for calls to members that are non-existent. These calls will fail.

The member could have been renamed or removed.

Loading history...
14
)
15