chore: clippy

This commit is contained in:
nathan 2024-10-07 09:43:21 +08:00
parent 75da496128
commit 01d73f2753
3 changed files with 2 additions and 3 deletions

View File

@ -33,7 +33,7 @@ void main() {
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
group('appflowy cloud', () {
testWidgets('anon user -> sign in -> open imported space', (tester) async {
testWidgets('anon user', (tester) async {
await tester.initializeAppFlowy(
cloudType: AuthenticatorType.appflowyCloudSelfHost,
);

View File

@ -9,7 +9,6 @@ use std::pin::Pin;
use std::sync::{Arc, RwLock};
use std::task::{Context, Poll};
use std::{ffi::CStr, os::raw::c_char};
use tokio::runtime::Builder;
use tokio::sync::mpsc;
use tokio::task::LocalSet;
use tracing::{debug, error, info, trace, warn};

View File

@ -1,7 +1,7 @@
use std::sync::Arc;
use collab_database::fields::Field;
use collab_database::rows::{Cell, RowCell};
use collab_database::rows::Cell;
use crate::entities::CalculationType;
use crate::services::field::TypeOptionCellExt;