Completed
Push — develop ( 3a3795...1e8194 )
by Antony
03:19 queued 01:31
created

build.resources.models   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 11
dl 0
loc 14
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A User.__init__() 0 2 1
1
import flask
2
import datetime
3
from run import create_app
4
from config import dbconfig, filename , section
5
from flask_bcrypt import Bcrypt
6
7
app = create_app('production')
8
bcrypt = Bcrypt(app)
9
10
class User(object):
11
12
    def __init__(self, username, password ,created_on, firstname, lastname):
13
        pass
14
15