chore: upgrade black (#19410)

This commit is contained in:
Ville Brofeldt
2022-03-29 20:03:09 +03:00
committed by GitHub
parent 816a2c3e1e
commit a619cb4ea9
204 changed files with 2125 additions and 608 deletions

View File

@@ -139,8 +139,14 @@ class TestBigQueryDbEngineSpec(TestDbEngineSpec):
self.assertEqual(result, {})
index_metadata = [
{"name": "clustering", "column_names": ["c_col1", "c_col2", "c_col3"],},
{"name": "partition", "column_names": ["p_col1", "p_col2", "p_col3"],},
{
"name": "clustering",
"column_names": ["c_col1", "c_col2", "c_col3"],
},
{
"name": "partition",
"column_names": ["p_col1", "p_col2", "p_col3"],
},
]
expected_result = {
"partitions": {"cols": [["p_col1", "p_col2", "p_col3"]]},
@@ -247,7 +253,12 @@ class TestBigQueryDbEngineSpec(TestDbEngineSpec):
level=ErrorLevel.ERROR,
extra={
"engine_name": "Google BigQuery",
"issue_codes": [{"code": 1017, "message": "",}],
"issue_codes": [
{
"code": 1017,
"message": "",
}
],
},
)
]