remove print debugs
This commit is contained in:
parent
4d1f6dc1aa
commit
2954e9e83d
1 changed files with 0 additions and 3 deletions
|
@ -69,14 +69,11 @@ class Text(models.Model):
|
||||||
'layers'
|
'layers'
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
print(api.get(**query))
|
|
||||||
layer = self.data.get('layer', None) or DEFAULT_LAYER
|
layer = self.data.get('layer', None) or DEFAULT_LAYER
|
||||||
annotations = api.get(**query)['data']['layers'][layer]
|
annotations = api.get(**query)['data']['layers'][layer]
|
||||||
print('line 73', annotations)
|
|
||||||
user = self.data.get('user', None)
|
user = self.data.get('user', None)
|
||||||
if user:
|
if user:
|
||||||
annotations = list(filter(lambda annot: annot['user'] == user, annotations))
|
annotations = list(filter(lambda annot: annot['user'] == user, annotations))
|
||||||
print('line 77', annotations)
|
|
||||||
return self.get_clips(api, annotations)
|
return self.get_clips(api, annotations)
|
||||||
|
|
||||||
def get_edit_annotations(self, api):
|
def get_edit_annotations(self, api):
|
||||||
|
|
Loading…
Reference in a new issue