Skip to content

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 Mar 12, 2024
1 parent ddb8b28 commit e3abe70
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions noxfile.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Automation using nox."""

import glob
import os

Expand Down
1 change: 1 addition & 0 deletions src/dvc_task/app/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""DVC Task app factories."""

from .filesystem import FSApp

__all__ = ["FSApp"]
1 change: 1 addition & 0 deletions src/dvc_task/app/filesystem.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""(Local) filesystem based Celery application."""

import logging
import os
from datetime import datetime
Expand Down
1 change: 1 addition & 0 deletions src/dvc_task/proc/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Process management module."""

from .manager import ProcessManager
from .process import ManagedProcess, ProcessInfo

Expand Down
1 change: 1 addition & 0 deletions src/dvc_task/proc/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Process exceptions."""

from ..exceptions import DvcTaskError


Expand Down
1 change: 1 addition & 0 deletions src/dvc_task/proc/process.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Managed process module."""

import json
import logging
import multiprocessing as mp
Expand Down
1 change: 1 addition & 0 deletions src/dvc_task/proc/tasks.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Celery tasks."""

from typing import Any, Dict

from celery import shared_task
Expand Down
1 change: 1 addition & 0 deletions src/dvc_task/worker/temporary.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Temporary worker module."""

import logging
import os
import threading
Expand Down
1 change: 1 addition & 0 deletions tests/app/test_filesystem.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Filesystem app tests."""

import json
from typing import Any, Dict, Optional

Expand Down
1 change: 1 addition & 0 deletions tests/proc/conftest.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Process test fixtures."""

import json
import os
from typing import Optional
Expand Down
1 change: 1 addition & 0 deletions tests/proc/test_manager.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Process manager tests."""

import builtins
import signal
import sys
Expand Down
1 change: 1 addition & 0 deletions tests/proc/test_process.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Process tests."""

import json
import subprocess
from typing import List, Union
Expand Down
1 change: 1 addition & 0 deletions tests/proc/test_tasks.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Process task tests."""

from typing import Any, Dict

import pytest
Expand Down
1 change: 1 addition & 0 deletions tests/test_utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Utils tests."""

import os

import pytest
Expand Down
1 change: 1 addition & 0 deletions tests/worker/test_temporary.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Temporary Worker tests."""

import sys

import pytest
Expand Down

0 comments on commit e3abe70

Please sign in to comment.