Skip to content

Commit

Permalink
Move import of Plotter to the correct location.
Browse files Browse the repository at this point in the history
  • Loading branch information
Philipp Ross authored and Philipp Ross committed May 22, 2024
1 parent e797af9 commit 4c71cd9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
import yaml

from Installer import Installer
from Plotter import Plotter
from utils import _expand_paths
from utils_mpi import MPIStreamHandler, MPIFileHandler, get_comm

Expand Down Expand Up @@ -157,6 +156,8 @@ def handle_benchmark_run(args: argparse.Namespace) -> None:
:rtype: None
"""
from BenchmarkManager import BenchmarkManager # pylint: disable=C0415
from Plotter import Plotter # pylint: disable=C0415

benchmark_manager = BenchmarkManager(fail_fast=args.failfast)

if args.summarize:
Expand Down

0 comments on commit 4c71cd9

Please sign in to comment.