Skip to content

Commit 03bfd15

Browse files
committed
Update imports to reflect result.py move
1 parent 115dd5e commit 03bfd15

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

devops/scripts/benchmarks/history.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import os
77
import json
88
from pathlib import Path
9-
from benches.result import Result, BenchmarkRun
9+
from utils.result import Result, BenchmarkRun
1010
from options import Compare, options
1111
from datetime import datetime, timezone
1212
from utils.utils import run

devops/scripts/benchmarks/output_html.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from collections import defaultdict
1212
from dataclasses import dataclass
1313
import matplotlib.dates as mdates
14-
from benches.result import BenchmarkRun, Result
14+
from utils.result import BenchmarkRun, Result
1515
import numpy as np
1616
from string import Template
1717

devops/scripts/benchmarks/output_markdown.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
66

77
import collections
8-
from benches.result import Result
8+
from utils.result import Result
99
from options import options, MarkdownSize
1010
import ast
1111

0 commit comments

Comments
 (0)