Skip to content

Commit

Permalink
Fix *verbose* arg
Browse files Browse the repository at this point in the history
  • Loading branch information
blokhin committed Feb 5, 2019
1 parent 2443e95 commit bc702be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mpds_client/retrieve_MPDS.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def __init__(self, api_key=None, endpoint=None, dtype=None, verbose=None, debug=

self.endpoint = endpoint or self.endpoint
self.dtype = dtype or MPDSDataTypes.PEER_REVIEWED
self.verbose = verbose or self.verbose
self.verbose = verbose if verbose is not None else self.verbose
self.debug = debug or self.debug


Expand Down

0 comments on commit bc702be

Please sign in to comment.