Skip to content

Commit 055f8d1

Browse files
committed
Fix linting changes recommended by black
1 parent 6745bfc commit 055f8d1

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

office365/directory/users/user.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ def send_mail(
272272
to_recipients,
273273
cc_recipients=None,
274274
bcc_recipients=None,
275-
reply_to = None,
275+
reply_to=None,
276276
save_to_sent_items=False,
277277
body_type="Text",
278278
):

office365/outlook/mail/messages/message.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -422,9 +422,7 @@ def cc_recipients(self):
422422
def reply_to(self):
423423
"""The replyTo: recipients for the reply to the message."""
424424
self._persist_changes("replyTo")
425-
return self.properties.setdefault(
426-
"replyTo", ClientValueCollection(Recipient)
427-
)
425+
return self.properties.setdefault("replyTo", ClientValueCollection(Recipient))
428426

429427
@property
430428
def sender(self):

0 commit comments

Comments
 (0)