Skip to content

Commit c4fceb1

Browse files
committed
fix linting errors
1 parent db41775 commit c4fceb1

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

tests/integration_tests/test_instances.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
import pytest
44

5-
from verda.constants import Locations
65
from verda import VerdaClient
6+
from verda.constants import Locations
77

88
IN_GITHUB_ACTIONS = os.getenv('GITHUB_ACTIONS') == 'true'
99

tests/integration_tests/test_locations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
import pytest
44

5-
from verda.constants import Locations
65
from verda import VerdaClient
6+
from verda.constants import Locations
77

88
IN_GITHUB_ACTIONS = os.getenv('GITHUB_ACTIONS') == 'true'
99

tests/integration_tests/test_volumes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
import pytest
55

6-
from verda.constants import Locations, VolumeStatus, VolumeTypes
76
from verda import VerdaClient
7+
from verda.constants import Locations, VolumeStatus, VolumeTypes
88

99
IN_GITHUB_ACTIONS = os.getenv('GITHUB_ACTIONS') == 'true'
1010

tests/unit_tests/test_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import pytest
22
import responses # https://github.com/getsentry/responses
33

4-
from verda.exceptions import APIException
54
from verda import VerdaClient
5+
from verda.exceptions import APIException
66

77
BASE_URL = 'https://api.example.com/v1'
88

verda/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from verda._version import __version__
21
from verda._verda import VerdaClient
2+
from verda._version import __version__
33

44
__all__ = ['VerdaClient']

0 commit comments

Comments
 (0)