Skip to content

Commit 395cc05

Browse files
committed
Removed print statement during Python UDF execution
1 parent e8972c8 commit 395cc05

File tree

1 file changed

+1
-1
lines changed
  • dbt/include/oracle/macros/materializations/python_model

1 file changed

+1
-1
lines changed

dbt/include/oracle/macros/materializations/python_model/python.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def main(action, client_identifier, clientinfo, module):
7070
try:
7171
setattr(connection, k, v)
7272
except AttributeError:
73-
print(f"Python driver does not support setting {k}")
73+
pass # ok to be silent, ADB-S Python runtime complains about print statements
7474

7575
set_connection_attributes()
7676

0 commit comments

Comments
 (0)