Skip to content

Commit 41a02e6

Browse files
Ignore unreachable branch
Signed-off-by: Edgar Ramírez Mondragón <edgarrm358@gmail.com>
1 parent 0aa5d9d commit 41a02e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/meltano_state_backend_snowflake/backend.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ def connection(self) -> snowflake.connector.SnowflakeConnection:
204204

205205
if self.private_key:
206206
conn_params["private_key"] = self.private_key
207-
elif self.password:
207+
elif self.password: # pragma: no branch
208208
conn_params["password"] = self.password
209209

210210
return snowflake.connector.connect(**conn_params)

0 commit comments

Comments
 (0)