From 035b000bb0580abbbed729ee4fb1209e7da51699 Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Fri, 15 May 2026 21:44:46 -0400 Subject: [PATCH] fix(analyze): drop unused drift import in shuffle_source MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Query-builder methods come through the generated AppDb, not the drift package directly — the import was dead. (#427 S4a) Co-Authored-By: Claude Opus 4.7 (1M context) --- flutter_client/lib/cache/shuffle_source.dart | 1 - 1 file changed, 1 deletion(-) diff --git a/flutter_client/lib/cache/shuffle_source.dart b/flutter_client/lib/cache/shuffle_source.dart index 5188a5fd..45c68919 100644 --- a/flutter_client/lib/cache/shuffle_source.dart +++ b/flutter_client/lib/cache/shuffle_source.dart @@ -10,7 +10,6 @@ import 'dart:math'; -import 'package:drift/drift.dart'; import 'package:flutter_riverpod/flutter_riverpod.dart'; import '../library/library_providers.dart' show libraryApiProvider;