mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-02-25 02:48:54 +01:00
Format code
This commit is contained in:
parent
c127869e60
commit
83af36f2e7
1 changed files with 2 additions and 1 deletions
|
@ -20,7 +20,8 @@ class ScanMissingMetadata {
|
|||
continue;
|
||||
}
|
||||
final missingMetadata = (d as List<File>).where((element) =>
|
||||
file_util.isSupportedImageFormat(element) && element.metadata == null);
|
||||
file_util.isSupportedImageFormat(element) &&
|
||||
element.metadata == null);
|
||||
for (final f in missingMetadata) {
|
||||
yield f;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue