mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-10 05:51:52 +08:00
Missing variable annotations were failing mypy tests
This commit is contained in:
@@ -13,9 +13,9 @@ class ColumnElement(ColumnOperators, ClauseElement):
|
||||
__visit_name__ = 'column' # type: Text
|
||||
primary_key = False # type: Any
|
||||
foreign_keys = [] # type: Any
|
||||
_label = None
|
||||
_key_label = key = None
|
||||
_alt_names = ()
|
||||
_label = None # type: Any
|
||||
_key_label = key = None # type: Any
|
||||
_alt_names = () # type: Any
|
||||
def self_group(self, against=None): ...
|
||||
def _negate(self): ...
|
||||
@util.memoized_property
|
||||
|
||||
Reference in New Issue
Block a user