Lint fix v1
This commit is contained in:
@@ -5,12 +5,12 @@ from .models import User
|
||||
|
||||
@admin.register(User)
|
||||
class UserAdmin(admin.ModelAdmin):
|
||||
search_fields = ("id", "email", "first_name", "last_name")
|
||||
search_fields = ('id', 'email', 'first_name', 'last_name')
|
||||
list_display = (
|
||||
"id",
|
||||
"first_name",
|
||||
"last_name",
|
||||
"is_active",
|
||||
"email",
|
||||
"date_joined",
|
||||
'id',
|
||||
'first_name',
|
||||
'last_name',
|
||||
'is_active',
|
||||
'email',
|
||||
'date_joined',
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user