Skip to content

Commit

Permalink
Merge pull request #122 from asfadmin/barebones_product_support
Browse files Browse the repository at this point in the history
Allow empty ASFProduct instantiation
  • Loading branch information
glshort authored Jul 19, 2022
2 parents c1691c4 + 7421d2a commit b3cd6a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion asf_search/ASFProduct.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


class ASFProduct:
def __init__(self, args: dict, session: ASFSession=ASFSession()):
def __init__(self, args: dict = {}, session: ASFSession = ASFSession()):
self.meta = args.get('meta')
self.umm = args.get('umm')

Expand Down

0 comments on commit b3cd6a0

Please sign in to comment.