Skip to content

Commit

Permalink
fix style after merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
amanda-her committed Oct 11, 2022
1 parent 417be5a commit 792e911
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
1 change: 0 additions & 1 deletion metadata-ingestion/junit.quick.xml

This file was deleted.

6 changes: 5 additions & 1 deletion metadata-ingestion/src/datahub/ingestion/source/tableau.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,11 @@ def make_tableau_client(self) -> Server:
raise ValueError(f"Unable to login: {str(e)}") from e


class TableauConfig(DatasetLineageProviderConfigBase, TableauConnectionConfig, TableauStatefulIngestionConfig):
class TableauConfig(
DatasetLineageProviderConfigBase,
StatefulIngestionConfigBase,
TableauConnectionConfig,
):
projects: Optional[List[str]] = Field(
default=["default"], description="List of projects"
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,7 @@ def test_tableau_ingest(pytestconfig, tmp_path, mock_datahub_graph):
mock_datahub_graph,
)


def test_lineage_overrides():
# Simple - specify platform instance to presto table
assert (
Expand Down

0 comments on commit 792e911

Please sign in to comment.