File tree Expand file tree Collapse file tree 6 files changed +14
-130
lines changed
Expand file tree Collapse file tree 6 files changed +14
-130
lines changed Original file line number Diff line number Diff line change 1919 new_changes ,
2020 new_unreleased ,
2121)
22- from exasol .toolbox .util .version import ReleaseTypes , Version
22+ from exasol .toolbox .util .version import (
23+ ReleaseTypes ,
24+ Version ,
25+ )
2326from noxconfig import PROJECT_CONFIG
2427
2528
Original file line number Diff line number Diff line change 99from sphinx .locale import _
1010from sphinx .util import i18n as sphinx_i18n
1111
12- from exasol .toolbox .version import VERSION as PLUGIN_VERSION
1312from exasol .toolbox .util .version import Version as ExasolVersion
13+ from exasol .toolbox .version import VERSION as PLUGIN_VERSION
1414
1515logger = logging .getLogger (__name__ )
1616
Original file line number Diff line number Diff line change 33import subprocess
44from dataclasses import dataclass
55from enum import Enum
6- from functools import wraps , total_ordering
6+ from functools import (
7+ total_ordering ,
8+ wraps ,
9+ )
710from pathlib import Path
811from shutil import which
912from typing import Any
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -44,9 +44,7 @@ class Config:
4444 root : Path = Path (__file__ ).parent
4545 doc : Path = Path (__file__ ).parent / "doc"
4646 importlinter : Path = Path (__file__ ).parent / ".import_linter_config"
47- version_file : Path = (
48- Path (__file__ ).parent / "exasol" / "toolbox" / "util" / "version.py"
49- )
47+ version_file : Path = Path (__file__ ).parent / "exasol" / "toolbox" / "version.py"
5048 path_filters : Iterable [str ] = (
5149 "dist" ,
5250 ".eggs" ,
Original file line number Diff line number Diff line change 1212 ReleaseError ,
1313 _trigger_release ,
1414)
15- from exasol .toolbox .util .version import poetry_command , Version
15+ from exasol .toolbox .util .version import (
16+ Version ,
17+ poetry_command ,
18+ )
1619
1720
1821@pytest .mark .parametrize (
You can’t perform that action at this time.
0 commit comments