Skip to content
This repository was archived by the owner on Oct 9, 2023. 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 Nov 19, 2021
1 parent 7bed4b1 commit 18c8c96
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions flash/core/data/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@
# limitations under the License.
import functools
from abc import abstractmethod
from typing import Any, Mapping, Optional, MutableMapping
from typing import Any, Mapping, MutableMapping, Optional
from warnings import warn

from deprecate import deprecated

import flash
from flash.core.data.io.input_base import InputBase
from flash.core.data.io.output import Output
from flash.core.data.properties import Properties
from flash.core.data.io.input_base import InputBase
from flash.core.utilities.stages import RunningStage


Expand All @@ -34,10 +34,7 @@ def __init__(
) -> None:

super().__init__(
running_stage=RunningStage.PREDICTING,
*args,
data_pipeline_state=data_pipeline_state,
**kwargs
running_stage=RunningStage.PREDICTING, *args, data_pipeline_state=data_pipeline_state, **kwargs
)

# TODO: keep load_sample, no load_data
Expand Down

0 comments on commit 18c8c96

Please sign in to comment.