Skip to content

Commit

Permalink
Merge pull request #17 from friendtocephalopods/relax-application-req…
Browse files Browse the repository at this point in the history
…uirements

make most application parameters optional
  • Loading branch information
feng-tao authored Jan 27, 2020
2 parents e795c28 + 58b4ca0 commit c0b154e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions amundsen_common/models/table.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,11 @@ class Meta:

@attr.s(auto_attribs=True, kw_only=True)
class Application:
application_url: str
description: str
application_url: Optional[str] = None
description: Optional[str] = None
id: str
name: str
name: Optional[str] = None
kind: Optional[str] = None


class ApplicationSchema(AttrsSchema):
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='amundsen-common',
version='0.1.5',
version='0.1.6',
description='Common code library for Amundsen',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
Expand Down

0 comments on commit c0b154e

Please sign in to comment.