Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
epinzur committed Aug 12, 2024
1 parent ec65bdb commit 73a5460
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion libs/ragulate/ragstack_ragulate/cli_commands/compare.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from .utils import remove_sqlite_extension


def setup_compare(subparsers) -> None: # type: ignore
def setup_compare(subparsers) -> None: # type: ignore[no-untyped-def]
"""Setup the compare command."""
compare_parser = subparsers.add_parser(
"compare", help="Compare results from 2 (or more) recipes"
Expand Down
2 changes: 1 addition & 1 deletion libs/ragulate/ragstack_ragulate/cli_commands/dashboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from .utils import remove_sqlite_extension


def setup_dashboard(subparsers) -> None: # type: ignore
def setup_dashboard(subparsers) -> None: # type: ignore[no-untyped-def]
"""Setup the dashboard command."""
dashboard_parser = subparsers.add_parser(
"dashboard",
Expand Down
2 changes: 1 addition & 1 deletion libs/ragulate/ragstack_ragulate/cli_commands/download.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from ragstack_ragulate.datasets import get_dataset


def setup_download(subparsers) -> None: # type: ignore
def setup_download(subparsers) -> None: # type: ignore[no-untyped-def]
"""Setup the download command."""
download_parser = subparsers.add_parser("download", help="Download a dataset")
download_parser.add_argument(
Expand Down
2 changes: 1 addition & 1 deletion libs/ragulate/ragstack_ragulate/cli_commands/ingest.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from ragstack_ragulate.utils import convert_vars_to_ingredients


def setup_ingest(subparsers) -> None: # type: ignore
def setup_ingest(subparsers) -> None: # type: ignore[no-untyped-def]
"""Setup the ingest command."""
ingest_parser = subparsers.add_parser("ingest", help="Run an ingest pipeline")
ingest_parser.add_argument(
Expand Down
2 changes: 1 addition & 1 deletion libs/ragulate/ragstack_ragulate/cli_commands/query.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from ragstack_ragulate.utils import convert_vars_to_ingredients


def setup_query(subparsers) -> None: # type: ignore
def setup_query(subparsers) -> None: # type: ignore[no-untyped-def]
"""Setup the query command."""
query_parser = subparsers.add_parser("query", help="Run a query pipeline")
query_parser.add_argument(
Expand Down
2 changes: 1 addition & 1 deletion libs/ragulate/ragstack_ragulate/cli_commands/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from ragstack_ragulate.pipelines import IngestPipeline, QueryPipeline


def setup_run(subparsers) -> None: # type: ignore
def setup_run(subparsers) -> None: # type: ignore[no-untyped-def]
"""Setup the run command."""
run_parser = subparsers.add_parser(
"run", help="Run an experiment from a config file"
Expand Down

0 comments on commit 73a5460

Please sign in to comment.