Skip to content

Commit 5b4351c

Browse files
author
Olga Annenkova
committed
feat: managed spark wrapper
1 parent da07dcb commit 5b4351c

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

yandexcloud/_wrappers/__init__.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
from typing import TYPE_CHECKING
22

33
from yandexcloud._wrappers.dataproc import Dataproc, InitializationAction
4-
from yandexcloud._wrappers.spark import Spark, SparkClusterParameters, SparkJobParameters, PysparkJobParameters
4+
from yandexcloud._wrappers.spark import (
5+
PysparkJobParameters,
6+
Spark,
7+
SparkClusterParameters,
8+
SparkJobParameters,
9+
)
510

611
if TYPE_CHECKING:
712
from yandexcloud._sdk import SDK

yandexcloud/_wrappers/spark/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
# mypy: ignore-errors
44
import logging
55
import random
6-
from typing import Dict, List, Optional
76
from dataclasses import dataclass
7+
from typing import Dict, List, Optional
88

99
import yandex.cloud.spark.v1.cluster_pb2 as cluster_pb
1010
import yandex.cloud.spark.v1.cluster_service_pb2 as cluster_service_pb

0 commit comments

Comments
 (0)