[mob] Trailing commas

This commit is contained in:
laurenspriem
2024-04-08 14:05:38 +05:30
parent 0b08afdbe2
commit eeedf8b3c2
3 changed files with 9 additions and 4 deletions

View File

@@ -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

View File

@@ -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);

View File

@@ -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) {