Passed
Push — master ( a6ab5f...fdd83f )
by Dean
02:55
created

  A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 0
dl 0
loc 6
ccs 5
cts 5
cp 1
rs 10
c 0
b 0
f 0
1 1
from plugin.models.core import db
2
3 1
from exception_wrappers.libraries.playhouse.apsw_ext import *
0 ignored issues
show
Coding Style introduced by
The usage of wildcard imports like exception_wrappers.libraries.playhouse.apsw_ext should generally be avoided.
Loading history...
4
5
6 1
class SchedulerTask(Model):
7 1
    class Meta:
8 1
        database = db
9 1
        db_table = 'scheduler.task'
10
11
    key = CharField(max_length=60, primary_key=True)
12