api/auth/groupauth.py
Function list_permission_checker
has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring. Open
Open
def list_permission_checker(handler, uid=None):
def g(exec_op):
def f(method, query=None, projection=None):
if uid is not None:
if uid != handler.uid and not handler.superuser_request and not handler.user_is_admin:
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function default
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
Open
def default(handler, group=None):
def g(exec_op):
def f(method, _id=None, query=None, payload=None, projection=None):
if handler.superuser_request:
pass
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function f
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
def f(method, _id=None, query=None, payload=None, projection=None):