Skip to content

Commit db41775

Browse files
committed
rename .verda to ._verda to make it clear that it's internal
1 parent 3fbd83a commit db41775

File tree

8 files changed

+7
-9
lines changed

8 files changed

+7
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ Create a file in the root directory of the project:
117117

118118
```python
119119
# example.py
120-
from verda.verda import VerdaClient
120+
from verda import VerdaClient
121121

122122
CLIENT_SECRET = 'secret'
123123
CLIENT_ID = 'your-id'

tests/integration_tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import pytest
44
from dotenv import load_dotenv
55

6-
from verda.verda import VerdaClient
6+
from verda import VerdaClient
77

88
"""
99
Make sure to run the server and the account has enough balance before running the tests

tests/integration_tests/test_instances.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import pytest
44

55
from verda.constants import Locations
6-
from verda.verda import VerdaClient
6+
from verda import VerdaClient
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
@@ -3,7 +3,7 @@
33
import pytest
44

55
from verda.constants import Locations
6-
from verda.verda import VerdaClient
6+
from verda import VerdaClient
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
@@ -4,7 +4,7 @@
44
import pytest
55

66
from verda.constants import Locations, VolumeStatus, VolumeTypes
7-
from verda.verda import VerdaClient
7+
from verda import VerdaClient
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
@@ -2,7 +2,7 @@
22
import responses # https://github.com/getsentry/responses
33

44
from verda.exceptions import APIException
5-
from verda.verda import VerdaClient
5+
from verda import VerdaClient
66

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

verda/__init__.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
import warnings
2-
31
from verda._version import __version__
4-
from verda.verda import VerdaClient
2+
from verda._verda import VerdaClient
53

64
__all__ = ['VerdaClient']
File renamed without changes.

0 commit comments

Comments
 (0)