Skip to content

Commit

Permalink
don't override modify user's choice
Browse files Browse the repository at this point in the history
  • Loading branch information
zeroshade committed Feb 7, 2024
1 parent 0f2cac1 commit 6aad000
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def connect(
kwargs = (db_kwargs or {}).copy()
if uri is not None:
kwargs["uri"] = uri
kwargs[DatabaseOptions.APPLICATION_NAME] = "[ADBC][Python]" + kwargs.get(DatabaseOptions.APPLICATION_NAME, "")
kwargs.setdefault(DatabaseOptions.APPLICATION_NAME, "[ADBC][Python]")
return adbc_driver_manager.AdbcDatabase(driver=_driver_path(), **kwargs)


Expand Down

0 comments on commit 6aad000

Please sign in to comment.