fix lints

This commit is contained in:
Christien Rioux 2025-06-02 15:56:00 -04:00
parent aeaf34e55d
commit d1559c949d
4 changed files with 6 additions and 6 deletions

View file

@ -26,11 +26,11 @@ class AuthorInputSource {
////////////////////////////////////////////////////////////////////////////
Future<int> getTailPosition() async =>
Future<int> getTailPosition() =>
_dhtLog.operate((reader) async => reader.length);
Future<AsyncValue<InputWindow?>> getWindow(
int startPosition, int windowLength) async =>
int startPosition, int windowLength) =>
_dhtLog.operate((reader) async {
// Don't allow negative length
if (windowLength <= 0) {