Skip to content

Commit 7ad013e

Browse files
committed
fix: adds missing whitespace for suppressions
Signed-off-by: Vincent Biret <[email protected]>
1 parent b56cc8d commit 7ad013e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/msgraph_core/tasks/large_file_upload.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
class LargeFileUploadTask:
2121

2222
def __init__(
23-
self, # pylint: disable=too-many-instance-attributes
23+
self, # pylint: disable=too-many-instance-attributes
2424
upload_session: Parsable,
2525
request_adapter: RequestAdapter,
2626
stream: BytesIO,
@@ -128,7 +128,7 @@ async def upload(self, after_chunk_upload: Optional[Callable] = None):
128128
self.next_range = next_range[0] + "-"
129129
process_next = await self.next_chunk(self.stream)
130130

131-
except Exception as error: #pylint: disable=broad-except
131+
except Exception as error: #pylint: disable=broad-except
132132
logging.error("Error uploading chunk %s", error)
133133
finally:
134134
self.chunks -= 1

0 commit comments

Comments
 (0)