Skip to content

Commit ed434ab

Browse files
committed
Fix
1 parent 2bb0ea0 commit ed434ab

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

scaleway-core/scaleway_core/api.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@
22
import logging
33
from dataclasses import dataclass
44
from typing import IO, Any, Dict, Iterable, List, Mapping, Optional, Tuple, Union
5+
from urllib3.util import Retry
56

67
import requests
78
from requests import Response
9+
from requests.adapters import HTTPAdapter
810

911
from .client import Client
1012

@@ -14,9 +16,6 @@
1416

1517
Params = Mapping[str, Any]
1618

17-
from requests.adapters import HTTPAdapter
18-
from urllib3.util import Retry
19-
2019

2120
@dataclass
2221
class APILogger:

scaleway/tests/test_vpc.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
import unittest
2-
31
import pytest
42
from vcr.unittest import VCRTestCase
3+
54
from scaleway.vpc.v2 import VpcV2API
65
from scaleway_core.api import ScalewayException
76
from scaleway_core.client import Client

0 commit comments

Comments
 (0)