Skip to content

Commit

Permalink
Correct setting deaults
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeyklay committed Dec 9, 2024
1 parent dfa69d7 commit 9ad87af
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gstore/repo.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,9 +160,9 @@ def sync(org: Organization, repos: list, base_path: str, **kwargs):
:keyword bool quiet: Disable info logging
:keyword int jobs: the number of worker processes to use
"""
verbose = kwargs.get('verbose', False)
quiet = kwargs.get('quiet', False)
jobs = kwargs.get('jobs', multiprocessing.cpu_count())
verbose = kwargs.get('verbose') or False
quiet = kwargs.get('quiet') or False
jobs = kwargs.get('jobs') or multiprocessing.cpu_count()

setup_logger(verbose, quiet)
main_logger = logging.getLogger(__name__)
Expand Down

0 comments on commit 9ad87af

Please sign in to comment.