Skip to content

Commit 5807805

Browse files
Default get_paths to False (#13)
Co-authored-by: Adam Mitchell <adam.mitchell@brillpower.com>
1 parent 2ea1d26 commit 5807805

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "python_thingset"
7-
version = "0.2.6"
7+
version = "0.2.7"
88
description = "A Python library for ThingSet functionality"
99
authors = [
1010
{ name = "Adam Mitchell", email = "adam.mitchell@brillpower.com" }

python_thingset/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def fetch(
2020
parent_id: Union[int, str],
2121
ids: List[Union[int, str]],
2222
node_id: Union[int, None] = None,
23-
get_paths: bool = True,
23+
get_paths: bool = False,
2424
) -> ThingSetResponse:
2525
values = []
2626

@@ -55,7 +55,7 @@ def get(
5555
self,
5656
value_id: Union[int, str],
5757
node_id: Union[int, None] = None,
58-
get_paths: bool = True,
58+
get_paths: bool = False,
5959
) -> ThingSetResponse:
6060
values = []
6161

0 commit comments

Comments
 (0)