forked from DGNum/gestioCOF
Remove lambda operators
This commit is contained in:
parent
2c63e6b667
commit
5e802217fd
2 changed files with 3 additions and 3 deletions
|
@ -10,7 +10,7 @@ def is_cof(user):
|
||||||
except:
|
except:
|
||||||
return False
|
return False
|
||||||
|
|
||||||
cof_required = user_passes_test(lambda u: is_cof(u))
|
cof_required = user_passes_test(is_cof)
|
||||||
|
|
||||||
|
|
||||||
def is_buro(user):
|
def is_buro(user):
|
||||||
|
@ -20,4 +20,4 @@ def is_buro(user):
|
||||||
except:
|
except:
|
||||||
return False
|
return False
|
||||||
|
|
||||||
buro_required = user_passes_test(lambda u: is_buro(u))
|
buro_required = user_passes_test(is_buro)
|
||||||
|
|
|
@ -6,4 +6,4 @@ from django.contrib.auth.decorators import user_passes_test
|
||||||
def kfet_is_team(user):
|
def kfet_is_team(user):
|
||||||
return user.has_perm('kfet.is_team')
|
return user.has_perm('kfet.is_team')
|
||||||
|
|
||||||
teamkfet_required = user_passes_test(lambda u: kfet_is_team(u))
|
teamkfet_required = user_passes_test(kfet_is_team)
|
||||||
|
|
Loading…
Reference in a new issue