run formatter

This commit is contained in:
Fabian Freund
2026-01-21 11:25:56 +01:00
parent dc4a5a9c85
commit baf19eed99
19 changed files with 231 additions and 109 deletions
@@ -92,7 +92,9 @@ class FeedParser {
tags: tags,
);
default:
throw Exception('Unknown feed type in readGeneralData: ${_feed.runtimeType}');
throw Exception(
'Unknown feed type in readGeneralData: ${_feed.runtimeType}',
);
}
}
@@ -209,7 +211,9 @@ class FeedParser {
);
}).toList();
default:
throw Exception('Unknown feed type in readArticles: ${_feed.runtimeType}');
throw Exception(
'Unknown feed type in readArticles: ${_feed.runtimeType}',
);
}
}
}