Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
benc-db committed Aug 1, 2023
1 parent 7fe62a5 commit 8297c31
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def _get_plugin_version():
"databricks-sql-connector~=2.7.0",
"databricks-sdk==0.1.7",
"keyring>=23.13.0",
"protobuf>=4.21.0" # workaround for dbt-core issue
"protobuf>=4.21.0", # workaround for dbt-core issue
],
zip_safe=False,
classifiers=[
Expand Down
4 changes: 1 addition & 3 deletions tests/unit/macros/test_python_macros.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,7 @@ def test_py_get_writer__specified_location_root(self):
self.default_context["is_incremental"] = MagicMock(return_value=True)
result = self._run_macro_raw("py_get_writer_options")

expected = (
'.format("delta")\n.option("path", "s3://fake_location/schema_incremental")'
)
expected = '.format("delta")\n.option("path", "s3://fake_location/schema_incremental")'
self.assertEqual(result, expected)

def test_py_get_writer__partition_by_single_column(self):
Expand Down

0 comments on commit 8297c31

Please sign in to comment.