Commit e8ae1c06 authored by Pierre-Antoine Rouby's avatar Pierre-Antoine Rouby
Browse files

Stricklers: Fix minor and medium bed coefficient type.

Showing with 2 additions and 2 deletions
+2 -2
......@@ -140,7 +140,7 @@ class Stricklers(SQLSubModel):
@minor.setter
def minor(self, minor):
self._minor = int(minor)
self._minor = float(minor)
@property
def medium(self):
......@@ -148,4 +148,4 @@ class Stricklers(SQLSubModel):
@medium.setter
def medium(self, medium):
self._medium = int(medium)
self._medium = float(medium)
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment