Skip to content

Commit

Permalink
Merge branch 'hotfix/tests-fixing'
Browse files Browse the repository at this point in the history
  • Loading branch information
onekiloparsec committed Apr 25, 2020
2 parents bbecd17 + ce53ac8 commit d53ed7f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion arcsecond/__init__.py
Expand Up @@ -7,4 +7,4 @@
"ArcsecondConnectionError",
"ArcsecondInvalidEndpointError"]

__version__ = '0.9.3'
__version__ = '0.9.4'
4 changes: 2 additions & 2 deletions arcsecond/api/main.py
Expand Up @@ -73,8 +73,8 @@ def get_api_state(state=None, **kwargs):
if 'api_key' in kwargs.keys():
state.api_key = kwargs.get('api_key')

if state.debug and state.is_using_cli:
print(f'{ECHO_PREFIX}debug mode{ECHO_PREFIX}')
if state.verbose and state.debug and state.is_using_cli:
click.echo(f'{ECHO_PREFIX}debug mode{ECHO_PREFIX}')

return state

Expand Down

0 comments on commit d53ed7f

Please sign in to comment.