Skip to content

Commit

Permalink
Trailing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
Craftplacer committed Nov 4, 2024
1 parent 3dbf0bd commit 89707fd
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/sane/lib/src/sane.dart
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ class Sane {

final versionCode = versionCodePointer.value;
logger.finest(
'SANE version: ${SaneUtils.version(versionCodePointer.value)}');
'SANE version: ${SaneUtils.version(versionCodePointer.value)}',
);

ffi.calloc.free(versionCodePointer);
ffi.calloc.free(nativeAuthCallback);
Expand Down Expand Up @@ -311,7 +312,8 @@ class Sane {
infoPointer,
);
logger.finest(
'sane_control_option($index, $action, $value) -> ${status.name}');
'sane_control_option($index, $action, $value) -> ${status.name}',
);

status.check();

Expand Down

0 comments on commit 89707fd

Please sign in to comment.