Skip to content
Closed
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
![ci](https://img.shields.io/github/actions/workflow/status/dnv-opensource/pystclient/.github%2Fworkflows%2Fnightly_build.yml?label=ci)
[![docs](https://img.shields.io/github/actions/workflow/status/dnv-opensource/pystclient/.github%2Fworkflows%2Fpush_to_release.yml?label=docs)][pystclient_docs]

# Pystclient - A Python client for Simulation Trust Center (STC)
# Pystclient - A Python client for Simulation Trust Center (STC) - test

## Table of Contents

Expand Down
2 changes: 1 addition & 1 deletion src/pystclient/clients.py
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@ def measurements(self, project_id: UUID, simulation_id: UUID | None = None) -> l
query_url = f"{query_url}&simulation-id={simulation_id}" if simulation_id is not None else query_url
r = to_models(
self.session.get(query_url),
Measurements,
Measurements,
)
return r

Expand Down
Loading