Skip to content

Commit 0c0e879

Browse files
committed
Fix formatting
1 parent d1af92a commit 0c0e879

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/pinned_browsers.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ def chrome(selected_version, workspace_prefix=""):
132132
"""
133133

134134
url = [d["url"] for d in chrome_downloads if d["platform"] == "mac-x64"][0]
135-
sha = calculate_hash(url) # Calculate SHA for Mac chrome
135+
sha = calculate_hash(url) # Calculate SHA for Mac chrome
136136

137137
content += f""" http_archive(
138138
name = "mac_{workspace_prefix}chrome",
@@ -159,6 +159,7 @@ def chrome(selected_version, workspace_prefix=""):
159159

160160
return content
161161

162+
162163
def convert_keys_to_lowercase(obj):
163164
if isinstance(obj, dict):
164165
return {k.lower(): convert_keys_to_lowercase(v) for k, v in obj.items()}

0 commit comments

Comments
 (0)