Skip to content

Commit ec00038

Browse files
committed
chore: remove uselsess
1 parent 4d0d97a commit ec00038

File tree

15 files changed

+48
-48
lines changed

15 files changed

+48
-48
lines changed

src/py/mat3ra/api_client/endpoints/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ class BaseEndpoint(object):
88
Base class for Exabyte RESTful API endpoints.
99
1010
Args:
11-
host (str): Mat3ra API hostname.
12-
port (int): Mat3ra API port number.
13-
version (str): Mat3ra API version. Defaults to 2018-10-1.
11+
host (str): hostname.
12+
port (int): port number.
13+
version (str): version. Defaults to 2018-10-1.
1414
secure (bool): whether to use secure http protocol (https vs http). Defaults to True.
1515
1616
Attributes:

src/py/mat3ra/api_client/endpoints/bank_entity.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ class BankEntityEndpoints(EntityEndpoint):
77
Bank Entity endpoints.
88
99
Args:
10-
host (str): Mat3ra API hostname.
11-
port (int): Mat3ra API port number.
10+
host (str): hostname.
11+
port (int): port number.
1212
account_id (str): account ID.
1313
auth_token (str): authentication token.
14-
version (str): Mat3ra API version.
14+
version (str): version.
1515
secure (bool): whether to use secure http protocol (https vs http).
1616
kwargs (dict): a dictionary of HTTP session options.
1717
timeout (int): session timeout in seconds.

src/py/mat3ra/api_client/endpoints/bank_materials.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ class BankMaterialEndpoints(BankEntityEndpoints):
77
Bank material endpoints.
88
99
Args:
10-
host (str): Mat3ra API hostname.
11-
port (int): Mat3ra API port number.
10+
host (str): hostname.
11+
port (int): port number.
1212
account_id (str): account ID.
1313
auth_token (str): authentication token.
14-
version (str): Mat3ra API version.
14+
version (str): version.
1515
secure (bool): whether to use secure http protocol (https vs http).
1616
kwargs (dict): a dictionary of HTTP session options.
1717
timeout (int): session timeout in seconds.

src/py/mat3ra/api_client/endpoints/bank_workflows.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ class BankWorkflowEndpoints(BankEntityEndpoints):
77
Bank workflow endpoints.
88
99
Args:
10-
host (str): Mat3ra API hostname.
11-
port (int): Mat3ra API port number.
10+
host (str): hostname.
11+
port (int): port number.
1212
account_id (str): account ID.
1313
auth_token (str): authentication token.
14-
version (str): Mat3ra API version.
14+
version (str): version.
1515
secure (bool): whether to use secure http protocol (https vs http).
1616
kwargs (dict): a dictionary of HTTP session options.
1717
timeout (int): session timeout in seconds.

src/py/mat3ra/api_client/endpoints/charges.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ class ChargeEndpoints(EntityEndpoint):
77
Charge endpoints.
88
99
Args:
10-
host (str): Mat3ra API hostname.
11-
port (int): Mat3ra API port number.
10+
host (str): hostname.
11+
port (int): port number.
1212
account_id (str): account ID.
1313
auth_token (str): authentication token.
14-
version (str): Mat3ra API version.
14+
version (str): version.
1515
secure (bool): whether to use secure http protocol (https vs http).
1616
kwargs (dict): a dictionary of HTTP session options.
1717
timeout (int): session timeout in seconds.

src/py/mat3ra/api_client/endpoints/entity.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ class EntityEndpoint(BaseEndpoint):
99
Exabyte Entity endpoint.
1010
1111
Args:
12-
host (str): Mat3ra API hostname.
13-
port (int): Mat3ra API port number.
12+
host (str): hostname.
13+
port (int): port number.
1414
account_id (str): account ID.
1515
auth_token (str): authentication token.
16-
version (str): Mat3ra API version.
16+
version (str): version.
1717
secure (bool): whether to use secure http protocol (https vs http).
1818
kwargs (dict): a dictionary of HTTP session options.
1919
timeout (int): session timeout in seconds.

src/py/mat3ra/api_client/endpoints/jobs.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ class JobEndpoints(EntitySetEndpointsMixin, EntityEndpoint):
1010
Job endpoints.
1111
1212
Args:
13-
host (str): Mat3ra API hostname.
14-
port (int): Mat3ra API port number.
13+
host (str): hostname.
14+
port (int): port number.
1515
account_id (str): account ID.
1616
auth_token (str): authentication token.
17-
version (str): Mat3ra API version.
17+
version (str): version.
1818
secure (bool): whether to use secure http protocol (https vs http).
1919
kwargs (dict): a dictionary of HTTP session options.
2020
timeout (int): session timeout in seconds.

src/py/mat3ra/api_client/endpoints/login.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ class LoginEndpoint(BaseEndpoint):
77
Login endpoint.
88
99
Args:
10-
host (str): Mat3ra API hostname.
11-
port (int): Mat3ra API port number.
10+
host (str): hostname.
11+
port (int): port number.
1212
username (str): username.
1313
password (str): password.
14-
version (str): Mat3ra API version.
14+
version (str): version.
1515
secure (bool): whether to use secure http protocol (https vs http).
1616
kwargs (dict): a dictionary of HTTP session options.
1717
timeout (int): session timeout in seconds.
@@ -44,11 +44,11 @@ def get_endpoint_options(host, port, username, password, version=DEFAULT_API_VER
4444
Logs in with given parameters and returns options to use for further calls to the RESTful API.
4545
4646
Args:
47-
host (str): Mat3ra API hostname.
48-
port (int): Mat3ra API port number.
47+
host (str): hostname.
48+
port (int): port number.
4949
username (str): username.
5050
password (str): password.
51-
version (str): Mat3ra API version.
51+
version (str): version.
5252
secure (bool): whether to use secure http protocol (https vs http).
5353
5454
Returns:

src/py/mat3ra/api_client/endpoints/logout.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ class LogoutEndpoint(BaseEndpoint):
77
Logout endpoint.
88
99
Args:
10-
host (str): Mat3ra API hostname.
11-
port (int): Mat3ra API port number.
10+
host (str): hostname.
11+
port (int): port number.
1212
account_id (str): account ID.
1313
auth_token (str): authentication token.
14-
version (str): Mat3ra API version.
14+
version (str): version.
1515
secure (bool): whether to use secure http protocol (https vs http).
1616
kwargs (dict): a dictionary of HTTP session options.
1717
timeout (int): session timeout in seconds.

src/py/mat3ra/api_client/endpoints/materials.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ class MaterialEndpoints(EntitySetEndpointsMixin, DefaultableEntityEndpointsMixin
1212
Material endpoints.
1313
1414
Args:
15-
host (str): Mat3ra API hostname.
16-
port (int): Mat3ra API port number.
15+
host (str): hostname.
16+
port (int): port number.
1717
account_id (str): account ID.
1818
auth_token (str): authentication token.
19-
version (str): Mat3ra API version.
19+
version (str): version.
2020
secure (bool): whether to use secure http protocol (https vs http).
2121
kwargs (dict): a dictionary of HTTP session options.
2222
timeout (int): session timeout in seconds.

0 commit comments

Comments
 (0)