fossasia / open-event-server

Consider iterating dictionary PYL-C0201
Anti-pattern
Major
5 months ago2 years old
Consider iterating the dictionary directly instead of calling .keys()
268            'update': 'can_update',
269            'delete': 'can_delete',
270        }
271        if operation not in list(operations.keys()):272            raise ValueError('No such operation defined')
273
274        try: