Skip to content

Commit 898c8b5

Browse files
committed
format files
1 parent abac02b commit 898c8b5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lib/src/tensor.dart

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,9 @@ class Tensor {
5555
/// Underlying data buffer as bytes.
5656
Uint8List get data {
5757
final data = cast<Uint8>(tfliteBinding.TfLiteTensorData(_tensor));
58-
return data.asTypedList(tfliteBinding.TfLiteTensorByteSize(_tensor))
59-
.asUnmodifiableView();
58+
return data
59+
.asTypedList(tfliteBinding.TfLiteTensorByteSize(_tensor))
60+
.asUnmodifiableView();
6061
}
6162

6263
/// Quantization Params associated with the model, [only Android]

0 commit comments

Comments
 (0)