Skip to content

Commit 0790dab

Browse files
committed
[FSTORE-1439][APPEND] Apply ruff formatting and fixes to the merged repo (#232)
* Ruff fix * Ruff format * Ruff fix * Revert making hsfs/client/base proper abstract class
1 parent edeffbc commit 0790dab

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+240
-316
lines changed

python/hopsworks/client/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
from hopsworks.client import external, hopsworks
1818

19+
1920
_client = None
2021
_python_version = None
2122

python/hopsworks/client/base.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,12 @@
1515
#
1616

1717
import os
18-
import furl
1918
from abc import ABC, abstractmethod
2019

20+
import furl
2121
import requests
2222
import urllib3
23-
24-
from hopsworks.client import exceptions, auth
23+
from hopsworks.client import auth, exceptions
2524
from hopsworks.decorators import connected
2625

2726

python/hopsworks/client/hopsworks.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
from pathlib import Path
2121

2222
import requests
23+
from hopsworks.client import auth, base
2324

24-
from hopsworks.client import base, auth
2525

2626
try:
2727
import jks
@@ -134,7 +134,7 @@ def _convert_jks_to_pem(self, jks_path, keystore_pw):
134134
ca_certs = ""
135135

136136
# Convert CA Certificates into PEM format and append to string
137-
for alias, c in ks.certs.items():
137+
for _alias, c in ks.certs.items():
138138
ca_certs = ca_certs + self._bytes_to_pem_str(c.cert, "CERTIFICATE")
139139
return ca_certs
140140

python/hopsworks/connection.py

+6-5
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@
1616

1717
import os
1818
import re
19-
import warnings
2019
import sys
20+
import warnings
2121

22-
from requests.exceptions import ConnectionError
23-
24-
from hopsworks.decorators import connected, not_connected
2522
from hopsworks import client, version
2623
from hopsworks.core import project_api, secret_api, variable_api
24+
from hopsworks.decorators import connected, not_connected
25+
from requests.exceptions import ConnectionError
26+
2727

2828
HOPSWORKS_PORT_DEFAULT = 443
2929
HOSTNAME_VERIFICATION_DEFAULT = True
@@ -210,7 +210,8 @@ def _check_compatibility(self):
210210
warnings.warn(
211211
"The installed hopsworks client version {0} may not be compatible with the connected Hopsworks backend version {1}. \nTo ensure compatibility please install the latest bug fix release matching the minor version of your backend ({2}) by running 'pip install hopsworks=={2}.*'".format(
212212
client_version, backend_version, major_minor_backend
213-
)
213+
),
214+
stacklevel=1,
214215
)
215216
sys.stderr.flush()
216217

python/hopsworks/core/dataset_api.py

+6-7
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,17 @@
1414
# limitations under the License.
1515
#
1616

17+
import copy
18+
import logging
1719
import math
1820
import os
19-
import time
20-
from tqdm.auto import tqdm
2121
import shutil
22-
import logging
23-
import copy
22+
import time
23+
from concurrent.futures import ThreadPoolExecutor, wait
2424

2525
from hopsworks import client
26-
from hopsworks.client.exceptions import RestAPIError
27-
from hopsworks.client.exceptions import DatasetException
28-
from concurrent.futures import ThreadPoolExecutor, wait
26+
from hopsworks.client.exceptions import DatasetException, RestAPIError
27+
from tqdm.auto import tqdm
2928

3029

3130
class Chunk:

python/hopsworks/core/environment_api.py

+15-8
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,13 @@ def __init__(
3232

3333
self._environment_engine = environment_engine.EnvironmentEngine(project_id)
3434

35-
def create_environment(self, name: str, description: Optional[str] = None, base_environment_name: Optional[str] = "python-feature-pipeline", await_creation: Optional[bool] = True) -> environment.Environment:
35+
def create_environment(
36+
self,
37+
name: str,
38+
description: Optional[str] = None,
39+
base_environment_name: Optional[str] = "python-feature-pipeline",
40+
await_creation: Optional[bool] = True,
41+
) -> environment.Environment:
3642
"""Create Python environment for the project
3743
3844
```python
@@ -66,13 +72,14 @@ def create_environment(self, name: str, description: Optional[str] = None, base_
6672
name,
6773
]
6874
headers = {"content-type": "application/json"}
69-
data = {"name": name,
70-
"baseImage": {
71-
"name": base_environment_name,
72-
"description": description
73-
}}
75+
data = {
76+
"name": name,
77+
"baseImage": {"name": base_environment_name, "description": description},
78+
}
7479
env = environment.Environment.from_response_json(
75-
_client._send_request("POST", path_params, headers=headers, data=json.dumps(data)),
80+
_client._send_request(
81+
"POST", path_params, headers=headers, data=json.dumps(data)
82+
),
7683
self._project_id,
7784
self._project_name,
7885
)
@@ -148,4 +155,4 @@ def _delete(self, name):
148155
name,
149156
]
150157
headers = {"content-type": "application/json"}
151-
_client._send_request("DELETE", path_params, headers=headers),
158+
(_client._send_request("DELETE", path_params, headers=headers),)

python/hopsworks/core/flink_cluster_api.py

+7-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,11 @@
1414
# limitations under the License.
1515
#
1616

17-
import os
1817
import json
19-
from hopsworks import client, flink_cluster, util, job
18+
import os
19+
20+
from hopsworks import client, flink_cluster, job, util
21+
from hopsworks.client.exceptions import RestAPIError
2022
from hopsworks.core import job_api
2123

2224

@@ -69,7 +71,9 @@ def setup_cluster(self, name: str, config=None):
6971
# If the job already exists, retrieve it
7072
_flink_cluster = self.get_cluster(name)
7173
if _flink_cluster._job.job_type != "FLINK":
72-
raise "This is not a Flink cluster. Please use different name to create new Flink cluster"
74+
raise RestAPIError(
75+
"This is not a Flink cluster. Please use different name to create new Flink cluster"
76+
)
7377
return _flink_cluster
7478
else:
7579
# If the job doesn't exists, create a new job

python/hopsworks/core/git_api.py

+9-9
Original file line numberDiff line numberDiff line change
@@ -14,23 +14,23 @@
1414
# limitations under the License.
1515
#
1616

17+
import json
18+
import logging
19+
from typing import List, Union
20+
1721
from hopsworks import (
1822
client,
19-
git_repo,
20-
git_op_execution,
21-
util,
2223
git_commit,
2324
git_file_status,
25+
git_op_execution,
26+
git_repo,
27+
util,
2428
)
2529
from hopsworks.client.exceptions import GitException
26-
from hopsworks.engine import git_engine
2730
from hopsworks.core import git_provider_api
28-
from typing import List, Union
31+
from hopsworks.engine import git_engine
2932
from hopsworks.git_file_status import GitFileStatus
3033

31-
import json
32-
import logging
33-
3434

3535
class GitApi:
3636
def __init__(
@@ -347,7 +347,7 @@ def _status(self, repo_id):
347347

348348
status_dict = json.loads(git_op.command_result_message)
349349
file_status = None
350-
if status_dict is not None and type(status_dict["status"]) is list:
350+
if status_dict is not None and isinstance(status_dict["status"], list):
351351
file_status = []
352352
for status in status_dict["status"]:
353353
file_status.append(

python/hopsworks/core/git_provider_api.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
# limitations under the License.
1515
#
1616

17+
import json
18+
1719
from hopsworks import client, git_provider
18-
from hopsworks.engine import git_engine
1920
from hopsworks.client.exceptions import GitException
20-
21-
import json
21+
from hopsworks.engine import git_engine
2222

2323

2424
class GitProviderApi:

python/hopsworks/core/job_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
import json
1818

19-
from hopsworks import client, job, util, job_schedule
19+
from hopsworks import client, job, job_schedule, util
2020
from hopsworks.client.exceptions import RestAPIError
2121

2222

python/hopsworks/core/kafka_api.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,11 @@
1414
# limitations under the License.
1515
#
1616

17-
from hopsworks import client, kafka_topic, kafka_schema, constants
18-
from hopsworks.client.exceptions import KafkaException
1917
import json
2018
import socket
19+
20+
from hopsworks import client, constants, kafka_schema, kafka_topic
21+
from hopsworks.client.exceptions import KafkaException
2122
from hopsworks.client.external import Client
2223

2324

@@ -366,7 +367,7 @@ def get_default_config(self):
366367
constants.KAFKA_SSL_CONFIG.SSL_ENDPOINT_IDENTIFICATION_ALGORITHM_CONFIG: "none",
367368
}
368369
_client = client.get_instance()
369-
if type(_client) == Client:
370+
if type(_client) is Client:
370371
config[constants.KAFKA_PRODUCER_CONFIG.BOOTSTRAP_SERVERS_CONFIG] = ",".join(
371372
[
372373
endpoint.replace("EXTERNAL://", "")

python/hopsworks/core/secret_api.py

+12-6
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,9 @@ def get_secret(self, name: str, owner: str = None) -> secret.Secret:
7272
"shared",
7373
]
7474

75-
return secret.Secret.from_response_json(_client._send_request("GET", path_params, query_params=query_params))[0]
75+
return secret.Secret.from_response_json(
76+
_client._send_request("GET", path_params, query_params=query_params)
77+
)[0]
7678

7779
def get(self, name: str, owner: str = None) -> str:
7880
"""Get the secret's value.
@@ -90,16 +92,20 @@ def get(self, name: str, owner: str = None) -> str:
9092
return self.get_secret(name=name, owner=owner).value
9193
except RestAPIError as e:
9294
if (
93-
e.response.json().get("errorCode", "") == 160048
94-
and e.response.status_code == 404
95-
and util.is_interactive()
95+
e.response.json().get("errorCode", "") == 160048
96+
and e.response.status_code == 404
97+
and util.is_interactive()
9698
):
97-
secret_input = getpass.getpass(prompt="\nCould not find secret, enter value here to create it: ")
99+
secret_input = getpass.getpass(
100+
prompt="\nCould not find secret, enter value here to create it: "
101+
)
98102
return self.create_secret(name, secret_input).value
99103
else:
100104
raise e
101105

102-
def create_secret(self, name: str, value: str, project: str = None) -> secret.Secret:
106+
def create_secret(
107+
self, name: str, value: str, project: str = None
108+
) -> secret.Secret:
103109
"""Create a new secret.
104110
105111
```python

python/hopsworks/engine/execution_engine.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414
# limitations under the License.
1515
#
1616

17-
from hopsworks.core import dataset_api, execution_api
18-
import os
1917
import logging
18+
import os
2019
import time
2120
import uuid
2221

2322
from hopsworks.client.exceptions import JobExecutionException, RestAPIError
23+
from hopsworks.core import dataset_api, execution_api
2424

2525

2626
class ExecutionEngine:

python/hopsworks/engine/git_engine.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,11 @@
1414
# limitations under the License.
1515
#
1616

17-
from hopsworks.core import git_op_execution_api
18-
from hopsworks.client.exceptions import GitException
19-
import time
2017
import logging
18+
import time
19+
20+
from hopsworks.client.exceptions import GitException
21+
from hopsworks.core import git_op_execution_api
2122

2223

2324
class GitEngine:

python/hopsworks/environment.py

+11-9
Original file line numberDiff line numberDiff line change
@@ -133,16 +133,18 @@ def install_wheel(self, path: str, await_installation: Optional[bool] = True):
133133
"packageSource": "WHEEL",
134134
}
135135

136-
library_rest = self._library_api._install(
137-
library_name, self.name, library_spec
138-
)
136+
library_rest = self._library_api._install(library_name, self.name, library_spec)
139137

140138
if await_installation:
141-
return self._environment_engine.await_library_command(self.name, library_name)
139+
return self._environment_engine.await_library_command(
140+
self.name, library_name
141+
)
142142

143143
return library_rest
144144

145-
def install_requirements(self, path: str, await_installation: Optional[bool] = True):
145+
def install_requirements(
146+
self, path: str, await_installation: Optional[bool] = True
147+
):
146148
"""Install libraries specified in a requirements.txt file
147149
148150
```python
@@ -184,12 +186,12 @@ def install_requirements(self, path: str, await_installation: Optional[bool] = T
184186
"packageSource": "REQUIREMENTS_TXT",
185187
}
186188

187-
library_rest = self._library_api._install(
188-
library_name, self.name, library_spec
189-
)
189+
library_rest = self._library_api._install(library_name, self.name, library_spec)
190190

191191
if await_installation:
192-
return self._environment_engine.await_library_command(self.name, library_name)
192+
return self._environment_engine.await_library_command(
193+
self.name, library_name
194+
)
193195

194196
return library_rest
195197

python/hopsworks/flink_cluster.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
#
1616

1717
import time
18-
from hopsworks.engine import execution_engine
19-
from hopsworks.core import execution_api
20-
from hopsworks.core import flink_cluster_api
18+
2119
from hopsworks import util
20+
from hopsworks.core import execution_api, flink_cluster_api
21+
from hopsworks.engine import execution_engine
2222

2323

2424
class FlinkCluster:

python/hopsworks/git_commit.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,11 @@
1414
# limitations under the License.
1515
#
1616

17-
from hopsworks import util
18-
import humps
1917
import json
2018

19+
import humps
20+
from hopsworks import util
21+
2122

2223
class GitCommit:
2324
def __init__(

python/hopsworks/git_file_status.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
# limitations under the License.
1515
#
1616

17-
import humps
1817
import json
1918

19+
import humps
2020
from hopsworks import util
2121

2222

0 commit comments

Comments
 (0)