Skip to content

Commit b1f3eee

Browse files
committed
Fix linting issues
1 parent 4aed868 commit b1f3eee

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/msgraph_core/models/large_file_upload_session.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
import datetime
44
from dataclasses import dataclass, field
55

6-
from kiota_abstractions.serialization import AdditionalDataHolder, Parsable, ParseNode, SerializationWriter
6+
from kiota_abstractions.serialization import (
7+
AdditionalDataHolder, Parsable, ParseNode, SerializationWriter
8+
)
79

810

911
@dataclass
@@ -22,8 +24,9 @@ def create_from_discriminator_value(
2224
parse_node: Optional[ParseNode] = None
2325
) -> LargeFileUploadSession:
2426
"""
25-
Creates a new instance of the appropriate class based on discriminator value
26-
param parse_node: The parse node to use to read the discriminator value and create the object
27+
Creates a new instance of the appropriate class based
28+
on discriminator value param parse_node: The parse node
29+
to use to read the discriminator value and create the object
2730
Returns: UploadSession
2831
"""
2932
if not parse_node:

0 commit comments

Comments
 (0)