-
-
Notifications
You must be signed in to change notification settings - Fork 363
Open
Description
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:
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!