Skip to content

Commit 96ac617

Browse files
authored
Minor tweaks to the revision script template to avoid some future linting fixups (#910)
Minor adjustments to the template introduced in #906
1 parent 21b4f05 commit 96ac617

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

mlos_bench/mlos_bench/storage/sql/alembic/script.py.mako

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
1+
#
2+
# Copyright (c) Microsoft Corporation.
3+
# Licensed under the MIT License.
4+
#
15
"""${message}
26

37
Revision ID: ${up_revision}
48
Revises: ${down_revision | comma,n}
59
Create Date: ${create_date}
610

711
"""
8-
from typing import Sequence
12+
# pylint: disable=no-member
13+
14+
from collections.abc import Sequence
915

1016
from alembic import op
1117
import sqlalchemy as sa

0 commit comments

Comments
 (0)