lhmatt
Results
2
issues of
lhmatt
Line 123-125: ``` if self.targets != {self.WILDCARD_TOKEN}: if not self.actions >= permission.actions: return False ``` This appears to be a copy+paste error. Line 124 is evaluating the `actions` part of...
Line 149: `the_parts = json.loads(assigned.decode('utf-8'))` Running python 3.7, this raise an exception for me. Strings in py3 are automatically unicode, so the `.decode('utf-8')` call is not valid and raises an...