Skip to content

Commit

Permalink
MAINT: Appease linter
Browse files Browse the repository at this point in the history
  • Loading branch information
HaoZeke committed Sep 8, 2024
1 parent 4012ef9 commit 3f970fe
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions asv/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Licensed under a 3-clause BSD style license - see LICENSE.rst

from importlib.metadata import version as get_version

from asv import plugin_manager # noqa F401 Needed to load the plugins

__version__ = get_version("asv")
Expand Down
2 changes: 1 addition & 1 deletion asv/commands/common_args.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
import math
import multiprocessing
import argparse
from importlib.metadata import version as get_version

from asv import util
from importlib.metadata import version as get_version


def add_global_arguments(parser, suppress_defaults=True):
Expand Down
2 changes: 1 addition & 1 deletion asv/commands/publish.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import multiprocessing
import datetime
from collections import defaultdict
from importlib.metadata import version as get_version

from asv.commands import Command
from asv.benchmarks import Benchmarks
Expand All @@ -14,7 +15,6 @@
from asv.results import iter_results
from asv.publishing import OutputPublisher
from asv import statistics, util
from importlib.metadata import version as get_version


def check_benchmark_params(name, benchmark):
Expand Down
1 change: 1 addition & 0 deletions asv/commands/rm.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
from asv_runner.console import get_answer_default

from asv import util

from . import Command
from ..console import log
from ..results import iter_results
Expand Down
2 changes: 1 addition & 1 deletion asv/plugins/mamba.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
except ImportError:
from yaml import Loader


import libmambapy

from ._mamba_helpers import MambaSolver
from .. import environment, util
from ..console import log
Expand Down

0 comments on commit 3f970fe

Please sign in to comment.