Skip to content

Commit

Permalink
fix: created module level doc string.
Browse files Browse the repository at this point in the history
  • Loading branch information
krupesh1958 committed Sep 23, 2024
1 parent 7807b19 commit fe1e593
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/scripts/mr_generate_summary.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
# Collect the results of the various model test runs which are done as part of
# the model regression CI pipeline and dump them as a single file artifact.
# This artifact will the then be published at the end of the tests.
from collections import defaultdict
import json
"""Collect the results of the various model test runs which are done as part of
the model regression CI pipeline and dump them as a single file artifact.
This artifact will the then be published at the end of the tests."""
import os
from pathlib import Path
import json

from typing import Dict, List
from collections import defaultdict
from pathlib import Path


def combine_result(
Expand Down

0 comments on commit fe1e593

Please sign in to comment.