Skip to content

Commit 82407b9

Browse files
author
Alejandro Casanovas
committed
inferenceClassification property to snakecase
1 parent f196a61 commit 82407b9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

O365/message.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ def __init__(self, *, parent=None, con=None, **kwargs):
265265
self._track_changes = TrackerSet(casing=cc)
266266
self.object_id = cloud_data.get(cc('id'), kwargs.get('object_id', None))
267267

268-
self.__inferenceClassification = cloud_data.get(cc('inferenceClassification'), None)
268+
self.__inference_classification = cloud_data.get(cc('inferenceClassification'), None)
269269

270270
self.__created = cloud_data.get(cc('createdDateTime'), None)
271271
self.__modified = cloud_data.get(cc('lastModifiedDateTime'), None)
@@ -417,9 +417,9 @@ def body(self):
417417
return self.__body
418418

419419
@property
420-
def inferenceClassification(self):
420+
def inference_classification(self):
421421
""" Message is focused or not"""
422-
return self.__inferenceClassification
422+
return self.__inference_classification
423423

424424
@body.setter
425425
def body(self, value):

0 commit comments

Comments
 (0)