Fixing flake8 E121, E122, E123, E124, E125, E126 errors

This commit is contained in:
Lukasz Langa
2016-12-19 23:47:57 -08:00
parent 67e38b6806
commit 6b5c6626d6
33 changed files with 354 additions and 286 deletions

View File

@@ -43,7 +43,7 @@ from .sql import (
union,
union_all,
update,
)
)
from .types import (
BIGINT,
@@ -87,7 +87,7 @@ from .types import (
UnicodeText,
VARBINARY,
VARCHAR,
)
)
from .schema import (
CheckConstraint,

View File

@@ -208,8 +208,8 @@ class LONGBLOB(object,
class _EnumeratedValues(_StringType): ...
class ENUM( # sqltypes.Enum,
_EnumeratedValues
):
_EnumeratedValues
):
__visit_name__ = ... # type: Any
strict = ... # type: Any
def __init__(self, *enums, **kw) -> None: ...