Skip to content

Commit

Permalink
Update comment for clarity
Browse files Browse the repository at this point in the history
Signed-off-by: Jesse Whitehouse <[email protected]>
  • Loading branch information
Jesse Whitehouse committed Oct 31, 2023
1 parent 31a0463 commit bf78371
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/databricks/sql/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@
# PEP 249 module globals
apilevel = "2.0"
threadsafety = 1 # Threads may share the module, but not connections.
paramstyle = "pyformat" # Python extended format codes, e.g. ...WHERE name=%(name)s

# Python extended format codes, e.g. ...WHERE name=%(name)s
# Note that when we switch to ParameterApproach.NATIVE, paramstyle will be `named`
paramstyle = "pyformat"


class DBAPITypeObject(object):
Expand Down

0 comments on commit bf78371

Please sign in to comment.