Skip to content

Commit 89707fd

Browse files
committed
Trailing commas
1 parent 3dbf0bd commit 89707fd

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

packages/sane/lib/src/sane.dart

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,8 @@ class Sane {
6464

6565
final versionCode = versionCodePointer.value;
6666
logger.finest(
67-
'SANE version: ${SaneUtils.version(versionCodePointer.value)}');
67+
'SANE version: ${SaneUtils.version(versionCodePointer.value)}',
68+
);
6869

6970
ffi.calloc.free(versionCodePointer);
7071
ffi.calloc.free(nativeAuthCallback);
@@ -311,7 +312,8 @@ class Sane {
311312
infoPointer,
312313
);
313314
logger.finest(
314-
'sane_control_option($index, $action, $value) -> ${status.name}');
315+
'sane_control_option($index, $action, $value) -> ${status.name}',
316+
);
315317

316318
status.check();
317319

0 commit comments

Comments
 (0)