Skip to content

Commit dc830fe

Browse files
Reformat function signature
Co-authored-by: Semyon Moroz <donbarbos@proton.me>
1 parent 37aadf4 commit dc830fe

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

Tools/build/generate_sbom.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -163,9 +163,8 @@ def get_externals() -> list[str]:
163163
return externals
164164

165165

166-
def download_with_retries(
167-
download_location: str,
168-
retries: int = 5) -> typing.Any:
166+
def download_with_retries(download_location: str,
167+
retries: int = 5) -> typing.Any:
169168
"""Download a file with exponential backoff retry."""
170169
attempt = 0
171170
while attempt < retries:

0 commit comments

Comments
 (0)