Skip to content

Commit

Permalink
return interpretation flags on the case overview (#40)
Browse files Browse the repository at this point in the history
* return interpretation flags on the case overview

* bump version
  • Loading branch information
cboustred authored Apr 27, 2021
1 parent 36543ae commit 19bcf47
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions pycipapi/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -506,6 +506,8 @@ def _load_data(self, **kwargs):
self.case_id = kwargs.get('case_id')
self.status = [RequestStatus(**s) for s in kwargs.get('status', [])]
self.referral = Referral(**kwargs.get('referral')) if kwargs.get('referral') else None
self.interpretation_flags = kwargs.get('interpretation_flags')


def get_case(self, cip_api_client, **params):
"""
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='pycipapi',
version='0.10.1',
version='0.10.2',
packages=find_packages(),
scripts=[],
url='https://github.com/genomicsengland/pycipapi',
Expand Down

0 comments on commit 19bcf47

Please sign in to comment.