Skip to content

Commit ed40103

Browse files
committed
Default value for Import parameter 'warn_on_connection_overwrite'
1 parent fc131d3 commit ed40103

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DatabaseLibrary/connection_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ class ConnectionManager:
141141
Connection Manager handles the connection & disconnection to the database.
142142
"""
143143

144-
def __init__(self, warn_on_connection_overwrite):
144+
def __init__(self, warn_on_connection_overwrite=True):
145145
self.omit_trailing_semicolon: bool = False
146146
self.connection_store: ConnectionStore = ConnectionStore(warn_on_overwrite=warn_on_connection_overwrite)
147147
self.ibmdb_driver_already_added_to_path: bool = False

0 commit comments

Comments
 (0)