Skip to content

Commit

Permalink
black: fix formating v24.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
utnapischtim committed Jan 28, 2024
1 parent 7264054 commit ad01710
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions invenio_oauth2server/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#
# This file is part of Invenio.
# Copyright (C) 2016-2018 CERN.
# Copyright (C) 2024 Graz University of Technology.
#
# Invenio is free software; you can redistribute it and/or modify it
# under the terms of the MIT License; see LICENSE file for more details.
Expand Down Expand Up @@ -35,9 +36,9 @@ class ClientView(ModelView):
"client_id",
)

column_list = (
column_searchable_list
) = column_sortable_list = column_details_list = list_all
column_list = column_searchable_list = column_sortable_list = (
column_details_list
) = list_all

column_list = list_all
column_default_sort = ("client_id", True)
Expand All @@ -56,9 +57,9 @@ class TokenView(ModelView):
"token_type",
"expires",
)
column_list = (
column_searchable_list
) = column_sortable_list = column_details_list = list_all
column_list = column_searchable_list = column_sortable_list = (
column_details_list
) = list_all


oauth2server_clients_adminview = {
Expand Down

0 comments on commit ad01710

Please sign in to comment.