Add new ruff rules and fix their fallout:
future-annotations = true
select = [ "TC", # type-checking import placement rules "FA", # future annotations rules ]This comprises:
- Streamline imports and exports in cmds.xxx.Cmd
- Import base class as "Base"- Export types Cmd and Parent via __all__- Move all types imported only for annotation below TYPE_CHECKING
- Use "from __future__ import annotations" all over the place
Signed-off-by: Jan Lindemann <jan@janware.com>
33 lines
959 B
Python
33 lines
959 B
Python
from __future__ import annotations
|
|
|
|
from ...App import Scope
|
|
from .Cmd import Cmd, Parent
|
|
from typing import TYPE_CHECKING
|
|
|
|
if TYPE_CHECKING:
|
|
from argparse import ArgumentParser, Namespace
|
|
|
|
class CmdPath(Cmd): # export
|
|
|
|
def __init__(self, parent: Parent) -> None:
|
|
super().__init__(parent, 'path', help = 'path')
|
|
|
|
def add_arguments(self, parser: ArgumentParser) -> None:
|
|
super().add_arguments(parser)
|
|
parser.add_argument('module', nargs = '*', help = 'Modules')
|
|
|
|
async def _run(self, args: Namespace) -> None:
|
|
deps = self.app.get_project_refs(
|
|
args.module,
|
|
['pkg.requires.jw'],
|
|
'run',
|
|
scope = Scope.Subtree,
|
|
add_self = True,
|
|
names_only = True,
|
|
)
|
|
out = []
|
|
for m in deps:
|
|
path = self.app.find_dir(m, ['/bin'])
|
|
if path is not None:
|
|
out.append(path)
|
|
print(':'.join(out))
|