Skip to content

Commit be9cb65

Browse files
committed
feat(DEVC-1752): fix lint
1 parent 1db2d26 commit be9cb65

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

src/corva/api.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import requests
77
from urllib3 import Retry
88

9-
from corva.api_utils import get_retry_strategy, get_requests_session
9+
from corva.api_utils import get_requests_session, get_retry_strategy
1010
from corva.configuration import SETTINGS
1111

1212

@@ -160,11 +160,11 @@ def _request(
160160
}
161161

162162
return self._execute_request(
163-
method=method,
164-
url=url,
165-
params=params,
166-
data=data,
167-
headers=headers,
163+
method=method,
164+
url=url,
165+
params=params,
166+
data=data,
167+
headers=headers,
168168
)
169169

170170
def get_dataset(

src/corva/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class Settings(pydantic.BaseSettings):
2626
# keep-alive
2727
POOL_CONNECTIONS_COUNT: int = 20 # Total pools count
2828
POOL_MAX_SIZE: int = 20 # Max connections count per pool/host
29-
POOL_BLOCK: bool = True # If all conn ack - wait until pool connection released
29+
POOL_BLOCK: bool = True # Wait until connection released
3030

3131
# retry
3232
MAX_RETRY_COUNT: int = 3 # If `0` then retires will be disabled

0 commit comments

Comments
 (0)