Skip to content

Commit eee7f69

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent f28a47f commit eee7f69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

misc/analyze_cache.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def pluck(name: str, chunks: Iterable[JsonDict]) -> Iterable[JsonDict]:
7878

7979
def report_counter(counter: Counter[str], amount: int | None = None) -> None:
8080
if amount is None:
81-
amount=len(counter) #default to the length of the counter if `amount` is None
81+
amount = len(counter) # default to the length of the counter if `amount` is None
8282
for name, count in counter.most_common(amount):
8383
print(f" {count: <8} {name}")
8484
print()

0 commit comments

Comments
 (0)