run black over stubs, add checking to travis

This commit is contained in:
Maxim Kurnikov
2018-12-03 18:52:44 +03:00
parent d5bc7d4ab2
commit cf6119bf9b
420 changed files with 2295 additions and 8384 deletions

View File

@@ -1,33 +1,24 @@
from typing import Any, Callable, List, Tuple, Union, Dict
class Reference:
def references_table(self, table: Any): ...
def references_column(self, table: Any, column: Any): ...
def rename_table_references(
self, old_table: Any, new_table: Any
) -> None: ...
def rename_column_references(
self, table: Any, old_column: Any, new_column: Any
) -> None: ...
def rename_table_references(self, old_table: Any, new_table: Any) -> None: ...
def rename_column_references(self, table: Any, old_column: Any, new_column: Any) -> None: ...
class Table(Reference):
table: str = ...
quote_name: Callable = ...
def __init__(self, table: str, quote_name: Callable) -> None: ...
def references_table(self, table: str) -> bool: ...
def rename_table_references(
self, old_table: str, new_table: str
) -> None: ...
def rename_table_references(self, old_table: str, new_table: str) -> None: ...
class TableColumns(Table):
table: str = ...
columns: List[str] = ...
def __init__(self, table: str, columns: List[str]) -> None: ...
def references_column(self, table: str, column: str) -> bool: ...
def rename_column_references(
self, table: str, old_column: str, new_column: str
) -> None: ...
def rename_column_references(self, table: str, old_column: str, new_column: str) -> None: ...
class Columns(TableColumns):
columns: List[str]
@@ -35,11 +26,7 @@ class Columns(TableColumns):
quote_name: Callable = ...
col_suffixes: Tuple = ...
def __init__(
self,
table: str,
columns: List[str],
quote_name: Callable,
col_suffixes: Union[List[str], Tuple] = ...,
self, table: str, columns: List[str], quote_name: Callable, col_suffixes: Union[List[str], Tuple] = ...
) -> None: ...
class IndexName(TableColumns):
@@ -47,13 +34,7 @@ class IndexName(TableColumns):
table: str
suffix: str = ...
create_index_name: Callable = ...
def __init__(
self,
table: str,
columns: List[str],
suffix: str,
create_index_name: Callable,
) -> None: ...
def __init__(self, table: str, columns: List[str], suffix: str, create_index_name: Callable) -> None: ...
class ForeignKeyName(TableColumns):
columns: List[str]
@@ -72,12 +53,8 @@ class ForeignKeyName(TableColumns):
) -> None: ...
def references_table(self, table: str) -> bool: ...
def references_column(self, table: str, column: str) -> bool: ...
def rename_table_references(
self, old_table: str, new_table: str
) -> None: ...
def rename_column_references(
self, table: str, old_column: str, new_column: str
) -> None: ...
def rename_table_references(self, old_table: str, new_table: str) -> None: ...
def rename_column_references(self, table: str, old_column: str, new_column: str) -> None: ...
class Statement(Reference):
template: str = ...
@@ -85,9 +62,5 @@ class Statement(Reference):
def __init__(self, template: str, **parts: Any) -> None: ...
def references_table(self, table: str) -> bool: ...
def references_column(self, table: str, column: str) -> bool: ...
def rename_table_references(
self, old_table: str, new_table: str
) -> None: ...
def rename_column_references(
self, table: str, old_column: str, new_column: str
) -> None: ...
def rename_table_references(self, old_table: str, new_table: str) -> None: ...
def rename_column_references(self, table: str, old_column: str, new_column: str) -> None: ...