You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First of all, thank you for this great library β it's been very helpful!
While migrating roles from one SharePoint site to another, I encountered some unexpected behavior. Upon investigating, I noticed the following method in base_permissions.py:
Hi there! π
First of all, thank you for this great library β it's been very helpful!
While migrating roles from one SharePoint site to another, I encountered some unexpected behavior. Upon investigating, I noticed the following method in base_permissions.py:
https://github.com/vgrem/Office365-REST-Python-Client/blob/master/office365/sharepoint/permissions/base_permissions.py:
def to_json(self, json_format=None): return {"Low": str(self.High), "High": str(self.Low)}
Shouldn't it be the other way around?:
{"Low": str(self.Low), "High": str(self.High)}
Best Regards!
The text was updated successfully, but these errors were encountered: