We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e48a9b3 commit 2ece4e4Copy full SHA for 2ece4e4
scheduler/app/faas_scheduler/utils.py
@@ -541,6 +541,9 @@ def get_statistics_grouped_by_base(
541
page: int,
542
per_page: int,
543
) -> Tuple[List[dict], int]:
544
+ # pylint: disable=E1102
545
+ # False positive caused by https://github.com/pylint-dev/pylint/issues/8138
546
+
547
fields = [
548
ScriptLog.dtable_uuid,
549
func.count(ScriptLog.id).label("number_of_runs"),
0 commit comments