[mob] Trailing commas
This commit is contained in:
@@ -375,8 +375,11 @@ class FaceMLDataDB {
|
||||
where: '$personIdColumn = ?',
|
||||
whereArgs: [personID],
|
||||
);
|
||||
await db.delete(notPersonFeedback,
|
||||
where: '$personIdColumn = ?', whereArgs: [personID]);
|
||||
await db.delete(
|
||||
notPersonFeedback,
|
||||
where: '$personIdColumn = ?',
|
||||
whereArgs: [personID],
|
||||
);
|
||||
}
|
||||
|
||||
/// Returns a map of faceID to record of clusterId and faceEmbeddingBlob
|
||||
|
||||
@@ -411,7 +411,8 @@ class ClusterFeedbackService {
|
||||
useDbscan = false,
|
||||
}) async {
|
||||
_logger.info(
|
||||
'breakUpCluster called for cluster $clusterID with dbscan $useDbscan');
|
||||
'breakUpCluster called for cluster $clusterID with dbscan $useDbscan',
|
||||
);
|
||||
final faceMlDb = FaceMLDataDB.instance;
|
||||
|
||||
final faceIDs = await faceMlDb.getFaceIDsForCluster(clusterID);
|
||||
|
||||
@@ -279,7 +279,8 @@ Future<_LivePhoto?> _downloadLivePhoto(
|
||||
return _LivePhoto(imageFileCache, videoFileCache);
|
||||
} else {
|
||||
debugPrint(
|
||||
"Warning: ${file.tag} either image ${imageFileCache == null} or video ${videoFileCache == null} is missing from remoteLive");
|
||||
"Warning: ${file.tag} either image ${imageFileCache == null} or video ${videoFileCache == null} is missing from remoteLive",
|
||||
);
|
||||
return null;
|
||||
}
|
||||
}).catchError((e) {
|
||||
|
||||
Reference in New Issue
Block a user