Skip to content

Commit

Permalink
Switched to not config.providers.
Browse files Browse the repository at this point in the history
  • Loading branch information
lisroach committed Apr 5, 2021
1 parent 157d79d commit 28365b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fixit/common/full_repo_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def get_repo_caches(
caches = {}
paths_iter = iter(paths)
head: Optional[str] = next(paths_iter, None)
placeholder: bool = False if config.providers else True
placeholder: bool = not config.providers
while head is not None:
paths_batch = tuple(chain([head], islice(paths_iter, config.batch_size - 1)))
head = next(paths_iter, None)
Expand Down

0 comments on commit 28365b1

Please sign in to comment.