Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ThiefMaster committed Feb 8, 2024
1 parent 4e8ac8b commit ac22d4a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion indico_jacow/client/MultipleAffiliationsSelector.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// This file is part of the JACoW plugin.
// Copyright (C) 2014 - 2024 CERN
// Copyright (C) 2021 - 2024 CERN
//
// The CERN Indico plugins are free software; you can redistribute
// them and/or modify them under the terms of the MIT License; see
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// This file is part of the JACoW plugin.
// Copyright (C) 2014 - 2024 CERN
// Copyright (C) 2021 - 2024 CERN
//
// The CERN Indico plugins are free software; you can redistribute
// them and/or modify them under the terms of the MIT License; see
Expand Down
2 changes: 1 addition & 1 deletion indico_jacow/client/i18n.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// This file is part of the JACoW plugin.
// Copyright (C) 2014 - 2024 CERN
// Copyright (C) 2021 - 2024 CERN
//
// The CERN Indico plugins are free software; you can redistribute
// them and/or modify them under the terms of the MIT License; see
Expand Down
2 changes: 1 addition & 1 deletion indico_jacow/client/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// This file is part of the JACoW plugin.
// Copyright (C) 2014 - 2024 CERN
// Copyright (C) 2021 - 2024 CERN
//
// The CERN Indico plugins are free software; you can redistribute
// them and/or modify them under the terms of the MIT License; see
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

import sqlalchemy as sa
from alembic import context, op

from sqlalchemy.sql.ddl import CreateSchema, DropSchema


Expand Down Expand Up @@ -66,7 +65,7 @@ def upgrade():
INSERT INTO plugin_jacow.{target} (person_link_id, affiliation_id, display_order)
SELECT id, affiliation_id, 0 FROM {source} pl
WHERE pl.affiliation_id IS NOT NULL
''')
''') # noqa: S608


def downgrade():
Expand Down

0 comments on commit ac22d4a

Please sign in to comment.