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

@@ -373,7 +373,9 @@ def test_import_datasets_sync_argument_columns_metrics(
assert response.exit_code == 0
expected_contents = {"dataset.yaml": "hello: world"}
import_datasets_command.assert_called_with(
expected_contents, sync_columns=True, sync_metrics=True,
expected_contents,
sync_columns=True,
sync_metrics=True,
)
@@ -408,7 +410,9 @@ def test_import_datasets_sync_argument_columns(
assert response.exit_code == 0
expected_contents = {"dataset.yaml": "hello: world"}
import_datasets_command.assert_called_with(
expected_contents, sync_columns=True, sync_metrics=False,
expected_contents,
sync_columns=True,
sync_metrics=False,
)
@@ -443,7 +447,9 @@ def test_import_datasets_sync_argument_metrics(
assert response.exit_code == 0
expected_contents = {"dataset.yaml": "hello: world"}
import_datasets_command.assert_called_with(
expected_contents, sync_columns=False, sync_metrics=True,
expected_contents,
sync_columns=False,
sync_metrics=True,
)