Skip to content

Commit

Permalink
fix: search output formatting for profiles
Browse files Browse the repository at this point in the history
  • Loading branch information
znarfm committed Feb 10, 2025
1 parent f2f9140 commit 09b8fa9
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions bing_rewards/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,7 @@ def main():
def desktop(profile=''):
# Complete search with desktop settings
count = options.count if 'count' in options else options.desktop_count
profile_msg = f" using profile '{profile}'" if profile else ''
print(f'Doing {count} desktop searches{profile_msg}')
print(f'Doing {count} desktop searches using "{profile}"')

temp_options = options
temp_options.profile = profile
Expand All @@ -206,8 +205,7 @@ def desktop(profile=''):
def mobile(profile=''):
# Complete search with mobile settings
count = options.count if 'count' in options else options.mobile_count
profile_msg = f" using profile '{profile}'" if profile else ''
print(f'Doing {count} mobile searches{profile_msg}')
print(f'Doing {count} mobile searches using "{profile}"')

temp_options = options
temp_options.profile = profile
Expand Down

0 comments on commit 09b8fa9

Please sign in to comment.