From c88d8655204b632dd8f0a5d78b6a0e9343c02ac2 Mon Sep 17 00:00:00 2001 From: Lukasz Langa Date: Tue, 24 Jan 2017 15:21:55 -0800 Subject: [PATCH] Missing variable annotations were failing mypy tests --- third_party/2and3/sqlalchemy/sql/elements.pyi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/third_party/2and3/sqlalchemy/sql/elements.pyi b/third_party/2and3/sqlalchemy/sql/elements.pyi index d03d5d39f..4b585c676 100644 --- a/third_party/2and3/sqlalchemy/sql/elements.pyi +++ b/third_party/2and3/sqlalchemy/sql/elements.pyi @@ -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