Skip to content

Commit

Permalink
fix: fix linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-monch committed Oct 22, 2024
1 parent 7f6ddb6 commit 400b9a8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions datalad_remake/commands/make_cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@
get_status_dict,
)
from datalad_next.constraints import (
DatasetParameter,
EnsureDataset,
EnsureListOf,
EnsurePath,
EnsureStr,
DatasetParameter,
)
from datalad_next.datasets import Dataset
from datalad_next.runners import (
Expand Down Expand Up @@ -176,7 +176,7 @@ def __call__(
template: str = '',
url_only: bool = False,
branch: str | None = None,
input: list[str] | None = None,
input: list[str] | None = None, # noqa: A002
input_list: Path | None = None,
output: list[str] | None = None,
output_list: Path | None = None,
Expand Down
6 changes: 3 additions & 3 deletions datalad_remake/commands/provision_cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

import logging
import os
import stat
from contextlib import chdir
from glob import glob
from pathlib import Path
Expand All @@ -28,11 +27,12 @@
get_status_dict,
)
from datalad_next.constraints import (
AnyOf,
DatasetParameter,
EnsureDataset,
EnsureListOf,
EnsurePath,
EnsureStr,
DatasetParameter, AnyOf,
)
from datalad_next.datasets import Dataset
from datalad_next.runners import call_git_lines, call_git_success
Expand Down Expand Up @@ -133,7 +133,7 @@ def __call__(
dataset: DatasetParameter | None = None,
branch: str | None = None,
delete: DatasetParameter | None = None,
input: list[str] | None = None,
input: list[str] | None = None, # noqa: A002
input_list: Path | None = None,
worktree_dir: str | Path | None = None,
):
Expand Down

0 comments on commit 400b9a8

Please sign in to comment.