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.
PeriodPriceModifier.__repr__()
A
last analyzed
↳ Parent:
Complexity
Conditions
1
Size
Total Lines
6
Duplication
Lines
0
Ratio
0 %
Importance
Changes
0
Metric
Value
cc
1
dl
0
loc
6
rs
9.4285
c
0
b
0
f
0
1
# -*- coding: utf-8 -*-
2
from __future__ import unicode_literals
3
4
from django.conf import settings
5
from django.db import models
6
from django.utils.translation import ugettext_lazy as _
7
8
from shoop.core.fields import MoneyValueField
9
from shoop.utils.properties import MoneyPropped
10
11
12
class PeriodPriceModifier(MoneyPropped, models.Model):
This check looks for calls to members that are non-existent. These calls will fail.
The member could have been renamed or removed.