Skip to content

Commit 9c74387

Browse files
committed
remove null assertion
1 parent 65e03e0 commit 9c74387

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/lib/service/download_counts/computations.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Future<({List<int> weeklyPoints, DateTime? newestDate})> computeWeeklyDownloads(
5252
return (weeklyPoints: <int>[], newestDate: null);
5353
}
5454

55-
final totals = countData!.totalCounts;
55+
final totals = countData.totalCounts;
5656

5757
var sum = 0;
5858
for (int i = 0; i < 52 * 7; i++) {

0 commit comments

Comments
 (0)