File tree Expand file tree Collapse file tree 1 file changed +3
-14
lines changed Expand file tree Collapse file tree 1 file changed +3
-14
lines changed Original file line number Diff line number Diff line change 1
1
from typing import Any
2
2
3
- from . import events as events
4
- from .elements import conv as conv
5
- from .schema import CheckConstraint as CheckConstraint
6
- from .schema import Column as Column
7
- from .schema import Constraint as Constraint
8
- from .schema import ForeignKeyConstraint as ForeignKeyConstraint
9
- from .schema import Index as Index
10
- from .schema import PrimaryKeyConstraint as PrimaryKeyConstraint
11
- from .schema import Table as Table
12
- from .schema import UniqueConstraint as UniqueConstraint
13
- from .. import event as event
14
- from .. import exc as exc
3
+ from .schema import Table
15
4
16
5
class ConventionDict :
17
6
const : Any = ...
18
7
table : Any = ...
19
8
convention : Any = ...
20
- def __init__ (self , const : Any , table : Any , convention : Any ) -> None : ...
21
- def __getitem__ (self , key : Any ): ...
9
+ def __init__ (self , const : Any , table : Table , convention : Any ) -> None : ...
10
+ def __getitem__ (self , key : Any ) -> Any : ...
You can’t perform that action at this time.
0 commit comments