Skip to content
This repository has been archived by the owner on Jul 18, 2024. It is now read-only.

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Apr 29, 2024
1 parent 6027adc commit 0e96539
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 1 deletion.
1 change: 1 addition & 0 deletions dask4dvc/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""The 'dask4dvc' package."""

import importlib.metadata
import logging
import sys
Expand Down
1 change: 1 addition & 0 deletions dask4dvc/cli/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""The 'dask4dvc' CLI."""

from dask4dvc.cli import main

__all__ = ["main"]
6 changes: 5 additions & 1 deletion dask4dvc/dvc_repro.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Dask4DVC to DVC repo interface."""

import dataclasses
import logging
import subprocess
Expand Down Expand Up @@ -161,7 +162,10 @@ def parallel_submit(
client: dask.distributed.Client,
repo: dvc.repo.Repo,
stages: typing.Dict[PipelineStage, str],
) -> typing.Tuple[typing.Dict[PipelineStage, dask.distributed.Future], typing.List[str],]:
) -> typing.Tuple[
typing.Dict[PipelineStage, dask.distributed.Future],
typing.List[str],
]:
"""Submit experiments in parallel."""
mapping = {}
queue_entries = get_all_queue_entries(repo)
Expand Down
1 change: 1 addition & 0 deletions dask4dvc/utils/dask.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Utils that are related to 'dask'."""

import logging
import pathlib
import typing
Expand Down
1 change: 1 addition & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""global pytest fixtures."""

import os
import pathlib
import shutil
Expand Down
1 change: 1 addition & 0 deletions tests/test_dask4dvc.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Test the 'dask4dvc' package."""

import dask4dvc


Expand Down
1 change: 1 addition & 0 deletions tests/test_repro.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Test the 'dask4dvc' CLI."""

import pathlib
import random

Expand Down
1 change: 1 addition & 0 deletions tests/test_run.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Test the 'dask4dvc' CLI."""

import pathlib
import random
import typing
Expand Down

0 comments on commit 0e96539

Please sign in to comment.