Skip to content

Commit 187c0e2

Browse files
committed
Fix mypy
1 parent 8d3d181 commit 187c0e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

metadata-ingestion/tests/unit/dbt/test_dbt_source.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ def test_include_database_name_default():
508508
@pytest.mark.parametrize(
509509
("include_database_name", "expected"), [("false", False), ("true", True)]
510510
)
511-
def test_include_database_name(include_database_name: str, expected: bool):
511+
def test_include_database_name(include_database_name: str, expected: bool) -> None:
512512
config_dict = {
513513
"manifest_path": "dummy_path",
514514
"catalog_path": "dummy_path",

0 commit comments

Comments
 (0)