Skip to content

Commit 7b47359

Browse files
committed
Fix paths for release
1 parent 877a898 commit 7b47359

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The package offers three different clients:
2727
To use the `NokoClient`, just import the client, create an instance and call the desired method:
2828

2929
```python
30-
from noko_client import NokoClient
30+
from noko_client.client import NokoClient
3131

3232
client = NokoClient('access_token')
3333
entries = client.list_entries(from_="2023-08-01", to=datetime(2023, 8, 15))

noko_client/__init__.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
11
# -*- coding: utf-8 -*-
22
"""Noko client package."""
33
__version__ = "1.0.0" # pragma: no cover
4-
5-
from noko_client.client import NokoClient
6-
7-
__all__ = ["NokoClient"]

0 commit comments

Comments
 (0)