Upload operator.py with huggingface_hub
Browse files- operator.py +4 -4
operator.py
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
-
from .stream import MultiStream, Stream
|
2 |
-
from .artifact import Artifact
|
3 |
-
|
4 |
from abc import abstractmethod
|
5 |
-
from typing import Optional, List, Dict, Generator, Union, Any
|
6 |
from dataclasses import field
|
|
|
|
|
|
|
|
|
7 |
|
8 |
|
9 |
class Operator(Artifact):
|
|
|
|
|
|
|
|
|
1 |
from abc import abstractmethod
|
|
|
2 |
from dataclasses import field
|
3 |
+
from typing import Any, Dict, Generator, List, Optional, Union
|
4 |
+
|
5 |
+
from .artifact import Artifact
|
6 |
+
from .stream import MultiStream, Stream
|
7 |
|
8 |
|
9 |
class Operator(Artifact):
|