Skip to content

Commit 30fc000

Browse files
committed
Black formatting
1 parent 1dd6236 commit 30fc000

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

platformio/package/download.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,9 @@ def get_size(self):
7272
def start(self, with_progress=True, silent=False):
7373
label = "Downloading"
7474
file_size = self.get_size()
75-
itercontent = self._http_response.iter_content(chunk_size=io.DEFAULT_BUFFER_SIZE)
75+
itercontent = self._http_response.iter_content(
76+
chunk_size=io.DEFAULT_BUFFER_SIZE
77+
)
7678
try:
7779
with open(self._destination, "wb") as fp:
7880
if file_size == -1 or not with_progress or silent:

0 commit comments

Comments
 (0)