Skip to content

Commit ab6a146

Browse files
committed
fix: Address linting errors
1 parent a171a18 commit ab6a146

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

tests/hooks/dbt/test_dbt_hook_base.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,9 @@ def test_dbt_hook_download_dbt_profiles():
9696
hook = DbtHook()
9797
hook.remotes[("", None)] = FakeRemote() # type: ignore
9898

99-
args, kwargs = hook.download_dbt_profiles("/path/to/profiles", "/path/to/store") # type: ignore
99+
args, kwargs = hook.download_dbt_profiles(
100+
"/path/to/profiles", "/path/to/store"
101+
) # type: ignore
100102

101103
assert args == ("/path/to/profiles", "/path/to/store")
102104
assert kwargs == {}
@@ -123,7 +125,9 @@ def test_dbt_hook_download_dbt_project():
123125
hook = DbtHook(project_conn_id="conn_id")
124126
hook.remotes[("", "conn_id")] = FakeRemote() # type: ignore
125127

126-
args, kwargs = hook.download_dbt_project("/path/to/profiles", "/path/to/store") # type: ignore
128+
args, kwargs = hook.download_dbt_project(
129+
"/path/to/profiles", "/path/to/store"
130+
) # type: ignore
127131

128132
assert args == ("/path/to/profiles", "/path/to/store")
129133
assert kwargs == {}

0 commit comments

Comments
 (0)