Skip to content

Commit 8a77540

Browse files
authored
Fix parsing ApiProject in wk api client (#970)
* Fix parsing ApiProject objects in wk api client * changelog
1 parent 67ab0ce commit 8a77540

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

webknossos/Changelog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ For upgrade instructions, please check the respective _Breaking Changes_ section
2020

2121
### Fixed
2222

23+
- Fixed a bug in reading project info from webknossos using the api client. [#970](https://github.com/scalableminds/webknossos-libs/pull/970)
24+
2325

2426
## [0.14.9](https://github.com/scalableminds/webknossos-libs/releases/tag/v0.14.9) - 2023-11-29
2527
[Commits](https://github.com/scalableminds/webknossos-libs/compare/v0.14.8...v0.14.9)

webknossos/webknossos/client/api_client/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ class ApiProject:
235235
name: str
236236
team: str
237237
team_name: str
238-
owner: ApiUser
238+
owner: ApiUserCompact
239239
priority: int
240240
paused: bool
241241
expected_time: Optional[int] = None

0 commit comments

Comments
 (0)