Skip to content

Commit

Permalink
fixed comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrey Zhavoronkov committed Nov 1, 2019
1 parent 30d5ca8 commit 7e71954
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cvat/apps/engine/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ class FloatArrayField(models.TextField):
separator = ","

def from_db_value(self, value, expression, connection):
if value is None or not value:
if not value:
return value
return [float(v) for v in value.split(self.separator)]

Expand Down

0 comments on commit 7e71954

Please sign in to comment.