forked from Github/frigate
sort imports
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
from peewee import *
|
||||
from playhouse.sqlite_ext import *
|
||||
|
||||
|
||||
class Event(Model):
|
||||
id = CharField(null=False, primary_key=True, max_length=30)
|
||||
label = CharField(index=True, max_length=20)
|
||||
@@ -9,4 +10,4 @@ class Event(Model):
|
||||
end_time = DateTimeField()
|
||||
top_score = FloatField()
|
||||
false_positive = BooleanField()
|
||||
zones = JSONField()
|
||||
zones = JSONField()
|
||||
|
||||
Reference in New Issue
Block a user