matiasmenares/Nissboard

View on GitHub
dashboard/model/models.py

Summary

Maintainability
D
3 days
Test Coverage

Showing 8 of 8 total issues

Similar blocks of code found in 2 locations. Consider refactoring.
Open

class NissanInput(db.Model):
id = db.Column(db.Integer, primary_key=True)
name = db.Column(db.String, unique=True, nullable=False)
consult_id = db.Column(db.Integer, db.ForeignKey('consult.id'), nullable=False)
consult = db.relationship('Consult')
Severity: Major
Found in dashboard/model/models.py and 1 other location - About 4 hrs to fix
dashboard/model/models.py on lines 55..59

Similar blocks of code found in 2 locations. Consider refactoring.
Open

class ObdInput(db.Model):
id = db.Column(db.Integer, primary_key=True)
name = db.Column(db.String, unique=True, nullable=False)
obd_id = db.Column(db.Integer, db.ForeignKey('obd.id'), nullable=False)
obd = db.relationship('Obd')
Severity: Major
Found in dashboard/model/models.py and 1 other location - About 4 hrs to fix
dashboard/model/models.py on lines 77..81

Similar blocks of code found in 2 locations. Consider refactoring.
Open

class AnalogInput(db.Model):
id = db.Column(db.Integer, primary_key=True)
name = db.Column(db.String, nullable=False)
pin = db.Column(db.String, nullable=False)
voltage_resistance = db.Column(db.Boolean, nullable=False)
Severity: Major
Found in dashboard/model/models.py and 1 other location - About 4 hrs to fix
dashboard/model/models.py on lines 122..126

Similar blocks of code found in 2 locations. Consider refactoring.
Open

class Dashboard(db.Model):
id = db.Column(db.Integer, primary_key=True)
name = db.Column(db.String, nullable=False)
red_line = db.Column(db.String, nullable=False)
yellow_line = db.Column(db.String, nullable=False)
Severity: Major
Found in dashboard/model/models.py and 1 other location - About 4 hrs to fix
dashboard/model/models.py on lines 88..92

Similar blocks of code found in 2 locations. Consider refactoring.
Open

class Condition(db.Model):
id = db.Column(db.Integer, primary_key=True)
name = db.Column(db.String, nullable=False)
condition = db.Column(db.String, nullable=False)
Severity: Major
Found in dashboard/model/models.py and 1 other location - About 2 hrs to fix
dashboard/model/models.py on lines 236..239

Similar blocks of code found in 2 locations. Consider refactoring.
Open

class VarConfig(db.Model):
id = db.Column(db.Integer, primary_key=True)
var_key = db.Column(db.String, nullable=False)
var_value = db.Column(db.String, nullable=False)
Severity: Major
Found in dashboard/model/models.py and 1 other location - About 2 hrs to fix
dashboard/model/models.py on lines 168..171

Similar blocks of code found in 2 locations. Consider refactoring.
Open

class MeasureGroup(db.Model):
id = db.Column(db.Integer, primary_key=True)
name = db.Column(db.String, nullable=False)
Severity: Major
Found in dashboard/model/models.py and 1 other location - About 1 hr to fix
dashboard/model/models.py on lines 159..161

Similar blocks of code found in 2 locations. Consider refactoring.
Open

class AlarmType(db.Model):
id = db.Column(db.Integer, primary_key=True)
name = db.Column(db.String, nullable=False)
Severity: Major
Found in dashboard/model/models.py and 1 other location - About 1 hr to fix
dashboard/model/models.py on lines 113..115
Category
Status