Skip to content

Commit 5f25ad8

Browse files
committed
fix: f-strings
1 parent 7672b52 commit 5f25ad8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

hub/graphql/types/stats.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -680,12 +680,12 @@ def get_group_by_area_properties(row):
680680
formatted_count=(
681681
(
682682
# pretty percentage
683-
f"{row.get("count", 0):.0%}"
683+
f"{row.get('count', 0):.0%}"
684684
)
685685
if is_percentage
686686
else (
687687
# comma-separated integer
688-
f"{row.get("count", 0):,.0f}"
688+
f"{row.get('count', 0):,.0f}"
689689
)
690690
),
691691
is_percentage=is_percentage,

0 commit comments

Comments
 (0)