Skip to content

Commit 05f4152

Browse files
committed
#2274: cache_model.py, ensure line 80 characters or less
1 parent 6034c50 commit 05f4152

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

brain/cache/cache_model.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,10 @@ def get_all_titles(self, name):
9292
if list_title:
9393
return {'result': list_title, 'error': None}
9494
else:
95-
return {'result': None, 'error': 'no previous model found in cache'}
95+
return {
96+
'result': None,
97+
'error': 'no previous model found in cache'
98+
}
9699
except Exception, error:
97100
self.list_error.append(str(error))
98101
return {'result': None, 'error': self.list_error}

0 commit comments

Comments
 (0)