Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion nortech/gateways/nortech_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class NortechAPISettings(BaseSettings):

URL: str = Field(default="https://api.apps.nor.tech")
KEY: str = Field(default=...)
USER_AGENT: str = Field(default="nortech-python/0.9.1")
USER_AGENT: str = Field(default="nortech-python/0.9.2")
IGNORE_PAGINATION: bool = True
EXPERIMENTAL_FEATURES: bool = False
TIMEOUT: float | Timeout = Field(default=Timeout(connect=10, read=60))
Expand Down
2 changes: 1 addition & 1 deletion nortech/metadata/services/signal.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ def parse_signal_input_or_output_or_id_union_to_signal_input(
for signal in signals
if isinstance(signal, int) or isinstance(signal, SignalListOutput)
]
signal_list_from_ids = _get_signals(nortech_api, signal_ids)
signal_list_from_ids = _get_signals(nortech_api, signal_ids) if len(signal_ids) > 0 else []

signal_inputs: list[SignalInput] = [
parse_signal_input(signal)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "nortech"
version = "0.9.1"
version = "0.9.2"
description = "The official Python library for Nortech AI"
authors = [
{ name = "Nortech AI", email = "info@nortech.ai" }
Expand Down
Loading